import numpy as np
# importing numpy with alias as np
import pandas as pd
# importing pandas with alias as pd
import matplotlib.pyplot as plt
# importing matplotlib.pyplot with alias as plt
%matplotlib inline
# This is the magic word used so that the visualizations using matplotlib will be plotted inline within the jupyter notebook
pd.set_option('display.max_columns',None)
# We want to look at all of the columns in the output,so we set the option to display all of them.
pd.set_option('display.max_rows',None)
# We want to look at all of the rows in the output,so we set the option to display all of them.
pd.set_option('display.expand_frame_repr',False)
# print full dataframe across multiple lines
pd.set_option('max_colwidth', 1000)
# sets max width to 1000px, per column.
import seaborn as sns
# Importing seaaborn with alias as sns
import requests
# The requests module allows you to send HTTP requests using Python
import os
# OS module provides allows you to interface with the underlying operating system that Python is running on
import tweepy
# download the json data from twitter
import json
# for encoding and decoding json data
from PIL import Image
# Python Imaging Library that adds support for opening, manipulating, and saving many different image file formats.
from io import BytesIO
# The io module provides Python's main facilities for dealing with various types of I/O
twitter_archive = pd.read_csv('twitter-archive-enhanced.csv')
# read the csv file
twitter_archive.head()
# first five rows of the dataframe
| tweet_id | in_reply_to_status_id | in_reply_to_user_id | timestamp | source | text | retweeted_status_id | retweeted_status_user_id | retweeted_status_timestamp | expanded_urls | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | NaN | NaN | 2017-08-01 16:23:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892420643555336193/photo/1 | 13 | 10 | Phineas | None | None | None | None |
| 1 | 892177421306343426 | NaN | NaN | 2017-08-01 00:17:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892177421306343426/photo/1 | 13 | 10 | Tilly | None | None | None | None |
| 2 | 891815181378084864 | NaN | NaN | 2017-07-31 00:18:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891815181378084864/photo/1 | 12 | 10 | Archie | None | None | None | None |
| 3 | 891689557279858688 | NaN | NaN | 2017-07-30 15:58:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891689557279858688/photo/1 | 13 | 10 | Darla | None | None | None | None |
| 4 | 891327558926688256 | NaN | NaN | 2017-07-29 16:00:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1 | 12 | 10 | Franklin | None | None | None | None |
twitter_archive.shape
(2356, 17)
twitter_archive['tweet_id'][1000]
# random tweet_id
747963614829678593
url = ' https://d17h27t6h515a5.cloudfront.net/topher/2017/August/599fd2ad_image-predictions/image-predictions.tsv'
# url where tsv file is hosted
response = requests.get(url)
response
# response is successful
<Response [200]>
folder_name = 'image-predictions'
# Make directory if it doesn't already exist
if not os.path.exists(folder_name):
os.makedirs(folder_name)
# writing the content into the file
with open(os.path.join(folder_name,url.split("/")[-1]),mode = 'wb') as file:
file.write(response.content)
image_prediction = pd.read_csv('image-predictions\image-predictions.tsv',sep = '\t')
# read the tsv file
image_prediction.head()
# first five rows of tsv file
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | Welsh_springer_spaniel | 0.465074 | True | collie | 0.156665 | True | Shetland_sheepdog | 0.061428 | True |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | redbone | 0.506826 | True | miniature_pinscher | 0.074192 | True | Rhodesian_ridgeback | 0.072010 | True |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | German_shepherd | 0.596461 | True | malinois | 0.138584 | True | bloodhound | 0.116197 | True |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | Rhodesian_ridgeback | 0.408143 | True | redbone | 0.360687 | True | miniature_pinscher | 0.222752 | True |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | miniature_pinscher | 0.560311 | True | Rottweiler | 0.243682 | True | Doberman | 0.154629 | True |
twitter_key = "HIDDEN"
twitter_secret_key = "HIDDEN"
twitter_token = "HIDDEN"
twitter_token_secret = "HIDDEN"
auth = tweepy.OAuthHandler(twitter_key,twitter_secret_key)
auth.set_access_token(twitter_token,twitter_token_secret)
api = tweepy.API(auth_handler=auth, wait_on_rate_limit=True, wait_on_rate_limit_notify=True)
random_tweet = api.get_status(twitter_archive['tweet_id'][1000] , tweet_mode = 'extended')
json_data = random_tweet._json
json_data
{'created_at': 'Wed Jun 29 01:23:16 +0000 2016',
'id': 747963614829678593,
'id_str': '747963614829678593',
'full_text': 'PUPPER NOOOOO BEHIND YOUUU 10/10 pls keep this pupper in your thoughts https://t.co/ZPfeRtOX0Q',
'truncated': False,
'display_text_range': [0, 70],
'entities': {'hashtags': [],
'symbols': [],
'user_mentions': [],
'urls': [],
'media': [{'id': 747963600220917761,
'id_str': '747963600220917761',
'indices': [71, 94],
'media_url': 'http://pbs.twimg.com/media/CmFM7ngXEAEitfh.jpg',
'media_url_https': 'https://pbs.twimg.com/media/CmFM7ngXEAEitfh.jpg',
'url': 'https://t.co/ZPfeRtOX0Q',
'display_url': 'pic.twitter.com/ZPfeRtOX0Q',
'expanded_url': 'https://twitter.com/dog_rates/status/747963614829678593/photo/1',
'type': 'photo',
'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
'medium': {'w': 937, 'h': 632, 'resize': 'fit'},
'small': {'w': 680, 'h': 459, 'resize': 'fit'},
'large': {'w': 937, 'h': 632, 'resize': 'fit'}}}]},
'extended_entities': {'media': [{'id': 747963600220917761,
'id_str': '747963600220917761',
'indices': [71, 94],
'media_url': 'http://pbs.twimg.com/media/CmFM7ngXEAEitfh.jpg',
'media_url_https': 'https://pbs.twimg.com/media/CmFM7ngXEAEitfh.jpg',
'url': 'https://t.co/ZPfeRtOX0Q',
'display_url': 'pic.twitter.com/ZPfeRtOX0Q',
'expanded_url': 'https://twitter.com/dog_rates/status/747963614829678593/photo/1',
'type': 'photo',
'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
'medium': {'w': 937, 'h': 632, 'resize': 'fit'},
'small': {'w': 680, 'h': 459, 'resize': 'fit'},
'large': {'w': 937, 'h': 632, 'resize': 'fit'}}}]},
'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
'in_reply_to_status_id': None,
'in_reply_to_status_id_str': None,
'in_reply_to_user_id': None,
'in_reply_to_user_id_str': None,
'in_reply_to_screen_name': None,
'user': {'id': 4196983835,
'id_str': '4196983835',
'name': 'WeRateDogs®',
'screen_name': 'dog_rates',
'location': '「 DM YOUR DOGS 」',
'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➪ WeRateDogs partnerships@weratedogs.com ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀',
'url': 'https://t.co/Wrvtpnv7JV',
'entities': {'url': {'urls': [{'url': 'https://t.co/Wrvtpnv7JV',
'expanded_url': 'https://blacklivesmatters.carrd.co',
'display_url': 'blacklivesmatters.carrd.co',
'indices': [0, 23]}]},
'description': {'urls': []}},
'protected': False,
'followers_count': 8780713,
'friends_count': 16,
'listed_count': 5587,
'created_at': 'Sun Nov 15 21:41:29 +0000 2015',
'favourites_count': 146141,
'utc_offset': None,
'time_zone': None,
'geo_enabled': True,
'verified': True,
'statuses_count': 12366,
'lang': None,
'contributors_enabled': False,
'is_translator': False,
'is_translation_enabled': False,
'profile_background_color': '000000',
'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
'profile_background_tile': False,
'profile_image_url': 'http://pbs.twimg.com/profile_images/1267972589722296320/XBr04M6J_normal.jpg',
'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1267972589722296320/XBr04M6J_normal.jpg',
'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1591077312',
'profile_link_color': 'F5ABB5',
'profile_sidebar_border_color': '000000',
'profile_sidebar_fill_color': '000000',
'profile_text_color': '000000',
'profile_use_background_image': False,
'has_extended_profile': False,
'default_profile': False,
'default_profile_image': False,
'following': False,
'follow_request_sent': False,
'notifications': False,
'translator_type': 'none'},
'geo': None,
'coordinates': None,
'place': None,
'contributors': None,
'is_quote_status': False,
'retweet_count': 2137,
'favorite_count': 5754,
'favorited': False,
'retweeted': False,
'possibly_sensitive': False,
'possibly_sensitive_appealable': False,
'lang': 'en'}
json_data['id']
747963614829678593
json_data['user']
{'id': 4196983835,
'id_str': '4196983835',
'name': 'WeRateDogs®',
'screen_name': 'dog_rates',
'location': '「 DM YOUR DOGS 」',
'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➪ WeRateDogs partnerships@weratedogs.com ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀',
'url': 'https://t.co/Wrvtpnv7JV',
'entities': {'url': {'urls': [{'url': 'https://t.co/Wrvtpnv7JV',
'expanded_url': 'https://blacklivesmatters.carrd.co',
'display_url': 'blacklivesmatters.carrd.co',
'indices': [0, 23]}]},
'description': {'urls': []}},
'protected': False,
'followers_count': 8780713,
'friends_count': 16,
'listed_count': 5587,
'created_at': 'Sun Nov 15 21:41:29 +0000 2015',
'favourites_count': 146141,
'utc_offset': None,
'time_zone': None,
'geo_enabled': True,
'verified': True,
'statuses_count': 12366,
'lang': None,
'contributors_enabled': False,
'is_translator': False,
'is_translation_enabled': False,
'profile_background_color': '000000',
'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
'profile_background_tile': False,
'profile_image_url': 'http://pbs.twimg.com/profile_images/1267972589722296320/XBr04M6J_normal.jpg',
'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1267972589722296320/XBr04M6J_normal.jpg',
'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1591077312',
'profile_link_color': 'F5ABB5',
'profile_sidebar_border_color': '000000',
'profile_sidebar_fill_color': '000000',
'profile_text_color': '000000',
'profile_use_background_image': False,
'has_extended_profile': False,
'default_profile': False,
'default_profile_image': False,
'following': False,
'follow_request_sent': False,
'notifications': False,
'translator_type': 'none'}
json_data['user']['followers_count']
8780713
json_data['user']['friends_count']
16
json_data['retweet_count']
2137
json_data['favorite_count']
5754
file_name = 'tweets_in_json.txt'
if not os.path.isfile(file_name):
open(file_name,'w').close()
df_list = []
# List of dictionaries to build and convert to a DataFrame later
tweet_id_errors = {}
tweet_count = 0
with open(file_name,'w') as file:
for each_tweet_id in twitter_archive['tweet_id']:
try:
each_tweet = api.get_status(each_tweet_id , tweet_mode = 'extended')
file.write(json.dumps(each_tweet._json) + '\n')
print(str(tweet_count) + '_' + str(each_tweet_id))
tweet_count += 1
except Exception as e:
print(str(tweet_count) + '_' + str(each_tweet_id) + ":" + str(e))
tweet_id_errors[str(tweet_count) + '_' + str(each_tweet_id)] = each_tweet._json
tweet_count += 1
0_892420643555336193
1_892177421306343426
2_891815181378084864
3_891689557279858688
4_891327558926688256
5_891087950875897856
6_890971913173991426
7_890729181411237888
8_890609185150312448
9_890240255349198849
10_890006608113172480
11_889880896479866881
12_889665388333682689
13_889638837579907072
14_889531135344209921
15_889278841981685760
16_888917238123831296
17_888804989199671297
18_888554962724278272
19_888202515573088257:[{'code': 144, 'message': 'No status found with that ID.'}]
20_888078434458587136
21_887705289381826560
22_887517139158093824
23_887473957103951883
24_887343217045368832
25_887101392804085760
26_886983233522544640
27_886736880519319552
28_886680336477933568
29_886366144734445568
30_886267009285017600
31_886258384151887873
32_886054160059072513
33_885984800019947520
34_885528943205470208
35_885518971528720385
36_885311592912609280
37_885167619883638784
38_884925521741709313
39_884876753390489601
40_884562892145688576
41_884441805382717440
42_884247878851493888
43_884162670584377345
44_883838122936631299
45_883482846933004288
46_883360690899218434
47_883117836046086144
48_882992080364220416
49_882762694511734784
50_882627270321602560
51_882268110199369728
52_882045870035918850
53_881906580714921986
54_881666595344535552
55_881633300179243008
56_881536004380872706
57_881268444196462592
58_880935762899988482
59_880872448815771648
60_880465832366813184
61_880221127280381952
62_880095782870896641
63_879862464715927552
64_879674319642796034
65_879492040517615616
66_879415818425184262
67_879376492567855104
68_879130579576475649
69_879050749262655488
70_879008229531029506
71_878776093423087618
72_878604707211726852
73_878404777348136964
74_878316110768087041
75_878281511006478336
76_878057613040115712
77_877736472329191424
78_877611172832227328
79_877556246731214848
80_877316821321428993
81_877201837425926144
82_876838120628539392
83_876537666061221889
84_876484053909872640
85_876120275196170240
86_875747767867523072
87_875144289856114688
88_875097192612077568
89_875021211251597312
90_874680097055178752
91_874434818259525634
92_874296783580663808
93_874057562936811520
94_874012996292530176
95_873697596434513921:[{'code': 144, 'message': 'No status found with that ID.'}]
96_873580283840344065
97_873337748698140672
98_873213775632977920
99_872967104147763200
100_872820683541237760
101_872668790621863937:[{'code': 144, 'message': 'No status found with that ID.'}]
102_872620804844003328
103_872486979161796608
104_872261713294495745:[{'code': 144, 'message': 'No status found with that ID.'}]
105_872122724285648897
106_871879754684805121
107_871762521631449091
108_871515927908634625
109_871166179821445120
110_871102520638267392
111_871032628920680449
112_870804317367881728
113_870726314365509632
114_870656317836468226
115_870374049280663552
116_870308999962521604
117_870063196459192321
118_869988702071779329:[{'code': 144, 'message': 'No status found with that ID.'}]
119_869772420881756160
120_869702957897576449
121_869596645499047938
122_869227993411051520
123_868880397819494401
124_868639477480148993
125_868622495443632128
126_868552278524837888
127_867900495410671616
128_867774946302451713
129_867421006826221569
130_867072653475098625
131_867051520902168576
132_866816280283807744:[{'code': 144, 'message': 'No status found with that ID.'}]
133_866720684873056260
134_866686824827068416
135_866450705531457537
136_866334964761202691
137_866094527597207552
138_865718153858494464
139_865359393868664832
140_865006731092295680
141_864873206498414592
142_864279568663928832
143_864197398364647424
144_863907417377173506
145_863553081350529029
146_863471782782697472
147_863432100342583297
148_863427515083354112
149_863079547188785154
150_863062471531167744
151_862831371563274240
152_862722525377298433
153_862457590147678208
154_862096992088072192
155_861769973181624320:[{'code': 144, 'message': 'No status found with that ID.'}]
156_861383897657036800
157_861288531465048066
158_861005113778896900
159_860981674716409858
160_860924035999428608
161_860563773140209665
162_860524505164394496
163_860276583193509888
164_860184849394610176
165_860177593139703809
166_859924526012018688
167_859851578198683649
168_859607811541651456
169_859196978902773760
170_859074603037188101
171_858860390427611136
172_858843525470990336
173_858471635011153920
174_858107933456039936
175_857989990357356544
176_857746408056729600
177_857393404942143489
178_857263160327368704
179_857214891891077121
180_857062103051644929
181_857029823797047296
182_856602993587888130:[{'code': 144, 'message': 'No status found with that ID.'}]
183_856543823941562368
184_856526610513747968
185_856330835276025856
186_856288084350160898
187_856282028240666624
188_855862651834028034
189_855860136149123072
190_855857698524602368
191_855851453814013952
192_855818117272018944
193_855459453768019968
194_855245323840757760
195_855138241867124737
196_854732716440526848
197_854482394044301312
198_854365224396361728
199_854120357044912130
200_854010172552949760
201_853760880890318849
202_853639147608842240
203_853299958564483072
204_852936405516943360
205_852912242202992640
206_852672615818899456
207_852553447878664193
208_852311364735569921
209_852226086759018497
210_852189679701164033
211_851953902622658560:[{'code': 144, 'message': 'No status found with that ID.'}]
212_851861385021730816
213_851591660324737024
214_851464819735769094
215_851224888060895234
216_850753642995093505
217_850380195714523136
218_850333567704068097
219_850145622816686080
220_850019790995546112
221_849776966551130114
222_849668094696017920
223_849412302885593088
224_849336543269576704
225_849051919805034497
226_848690551926992896
227_848324959059550208
228_848213670039564288
229_848212111729840128
230_847978865427394560
231_847971574464610304
232_847962785489326080
233_847842811428974592
234_847617282490613760
235_847606175596138505
236_847251039262605312
237_847157206088847362
238_847116187444137987
239_846874817362120707
240_846514051647705089
241_846505985330044928
242_846153765933735936
243_846139713627017216
244_846042936437604353
245_845812042753855489
246_845677943972139009
247_845459076796616705:[{'code': 144, 'message': 'No status found with that ID.'}]
248_845397057150107648
249_845306882940190720
250_845098359547420673
251_844979544864018432
252_844973813909606400
253_844704788403113984:[{'code': 144, 'message': 'No status found with that ID.'}]
254_844580511645339650
255_844223788422217728
256_843981021012017153
257_843856843873095681
258_843604394117681152
259_843235543001513987
260_842892208864923648:[{'code': 144, 'message': 'No status found with that ID.'}]
261_842846295480000512
262_842765311967449089
263_842535590457499648
264_842163532590374912
265_842115215311396866
266_841833993020538882
267_841680585030541313
268_841439858740625411
269_841320156043304961
270_841314665196081154
271_841077006473256960
272_840761248237133825
273_840728873075638272
274_840698636975636481
275_840696689258311684
276_840632337062862849
277_840370681858686976
278_840268004936019968
279_839990271299457024
280_839549326359670784
281_839290600511926273
282_839239871831150596
283_838952994649550848
284_838921590096166913
285_838916489579200512
286_838831947270979586
287_838561493054533637
288_838476387338051585
289_838201503651401729
290_838150277551247360
291_838085839343206401
292_838083903487373313
293_837820167694528512
294_837482249356513284
295_837471256429613056
296_837366284874571778:[{'code': 144, 'message': 'No status found with that ID.'}]
297_837110210464448512
298_837012587749474308:[{'code': 144, 'message': 'No status found with that ID.'}]
299_836989968035819520
300_836753516572119041
301_836677758902222849
302_836648853927522308
303_836397794269200385
304_836380477523124226
305_836260088725786625
306_836001077879255040
307_835685285446955009
308_835574547218894849
309_835536468978302976
310_835309094223372289
311_835297930240217089
312_835264098648616962
313_835246439529840640
314_835172783151792128
315_835152434251116546
316_834931633769889797
317_834786237630337024
318_834574053763584002
319_834477809192075265
320_834458053273591808
321_834209720923721728
322_834167344700198914
323_834089966724603904
324_834086379323871233
325_833863086058651648
326_833826103416520705
327_833732339549220864
328_833722901757046785
329_833479644947025920
330_833124694597443584
331_832998151111966721
332_832769181346996225
333_832757312314028032
334_832682457690300417
335_832645525019123713
336_832636094638288896
337_832397543355072512
338_832369877331693569
339_832273440279240704
340_832215909146226688
341_832215726631055365
342_832088576586297345
343_832040443403784192
344_832032802820481025
345_831939777352105988
346_831926988323639298
347_831911600680497154
348_831670449226514432
349_831650051525054464
350_831552930092285952
351_831322785565769729
352_831315979191906304
353_831309418084069378
354_831262627380748289
355_830956169170665475
356_830583320585068544
357_830173239259324417
358_830097400375152640
359_829878982036299777
360_829861396166877184
361_829501995190984704
362_829449946868879360
363_829374341691346946:[{'code': 144, 'message': 'No status found with that ID.'}]
364_829141528400556032
365_829011960981237760
366_828801551087042563
367_828770345708580865
368_828708714936930305
369_828650029636317184
370_828409743546925057
371_828408677031882754
372_828381636999917570
373_828376505180889089
374_828372645993398273
375_828361771580813312
376_828046555563323392
377_828011680017821696
378_827933404142436356
379_827653905312006145
380_827600520311402496
381_827324948884643840
382_827228250799742977:[{'code': 144, 'message': 'No status found with that ID.'}]
383_827199976799354881
384_826958653328592898
385_826848821049180160
386_826615380357632002
387_826598799820865537
388_826598365270007810
389_826476773533745153
390_826240494070030336
391_826204788643753985
392_826115272272650244
393_825876512159186944
394_825829644528148480
395_825535076884762624
396_825147591692263424
397_825120256414846976
398_825026590719483904
399_824796380199809024
400_824775126675836928
401_824663926340194305
402_824325613288833024
403_824297048279236611
404_824025158776213504
405_823939628516474880
406_823719002937630720
407_823699002998870016
408_823581115634085888
409_823333489516937216
410_823322678127919110
411_823269594223824897
412_822975315408461824
413_822872901745569793
414_822859134160621569
415_822647212903690241
416_822610361945911296
417_822489057087389700
418_822462944365645825
419_822244816520155136
420_822163064745328640
421_821886076407029760
422_821813639212650496
423_821765923262631936
424_821522889702862852
425_821421320206483457
426_821407182352777218
427_821153421864615936
428_821149554670182400
429_821107785811234820
430_821044531881721856
431_820837357901512704
432_820749716845686786
433_820690176645140481
434_820494788566847489
435_820446719150292993
436_820314633777061888
437_820078625395449857
438_820013781606658049
439_819952236453363712
440_819924195358416896
441_819711362133872643
442_819588359383371776
443_819347104292290561
444_819238181065359361
445_819227688460238848
446_819015337530290176
447_819015331746349057
448_819006400881917954
449_819004803107983360
450_818646164899774465
451_818627210458333184
452_818614493328580609
453_818588835076603904
454_818536468981415936
455_818307523543449600
456_818259473185828864
457_818145370475810820
458_817908911860748288
459_817827839487737858
460_817777686764523521
461_817536400337801217
462_817502432452313088
463_817423860136083457
464_817415592588222464
465_817181837579653120
466_817171292965273600
467_817120970343411712
468_817056546584727552
469_816829038950027264
470_816816676327063552
471_816697700272001025
472_816450570814898180
473_816336735214911488
474_816091915477250048
475_816062466425819140
476_816014286006976512
477_815990720817401858
478_815966073409433600
479_815745968457060357
480_815736392542261248
481_815639385530101762
482_815390420867969024
483_814986499976527872
484_814638523311648768
485_814578408554463233
486_814530161257443328
487_814153002265309185
488_813944609378369540
489_813910438903693312
490_813812741911748608
491_813800681631023104
492_813217897535406080
493_813202720496779264
494_813187593374461952
495_813172488309972993
496_813157409116065792
497_813142292504645637
498_813130366689148928
499_813127251579564032
500_813112105746448384
501_813096984823349248
502_813081950185472002
503_813066809284972545
504_813051746834595840
505_812781120811126785
506_812747805718642688:[{'code': 144, 'message': 'No status found with that ID.'}]
507_812709060537683968
508_812503143955202048
509_812466873996607488
510_812372279581671427
511_811985624773361665
512_811744202451197953
513_811647686436880384
514_811627233043480576
515_811386762094317568
516_810984652412424192
517_810896069567610880
518_810657578271330305
519_810284430598270976
520_810254108431155201
521_809920764300447744
522_809808892968534016
523_809448704142938112
524_809220051211603969
525_809084759137812480
526_808838249661788160
527_808733504066486276
528_808501579447930884
529_808344865868283904
530_808134635716833280
531_808106460588765185
532_808001312164028416
533_807621403335917568
534_807106840509214720
535_807059379405148160
536_807010152071229440
537_806629075125202948
538_806620845233815552
539_806576416489959424
540_806542213899489280
541_806242860592926720
542_806219024703037440
543_805958939288408065
544_805932879469572096
545_805826884734976000
546_805823200554876929
547_805520635690676224
548_805487436403003392
549_805207613751304193
550_804738756058218496
551_804475857670639616
552_804413760345620481
553_804026241225523202
554_803773340896923648
555_803692223237865472
556_803638050916102144
557_803380650405482500
558_803321560782307329
559_803276597545603072
560_802952499103731712
561_802624713319034886
562_802600418706604034
563_802572683846291456
564_802323869084381190
565_802265048156610565
566_802247111496568832:[{'code': 144, 'message': 'No status found with that ID.'}]
567_802239329049477120
568_802185808107208704
569_801958328846974976
570_801854953262350336
571_801538201127157760
572_801285448605831168
573_801167903437357056
574_801127390143516673
575_801115127852503040
576_800859414831898624
577_800855607700029440
578_800751577355128832
579_800513324630806528
580_800459316964663297
581_800443802682937345
582_800388270626521089
583_800188575492947969
584_800141422401830912
585_800018252395122689
586_799774291445383169
587_799757965289017345
588_799422933579902976
589_799308762079035393
590_799297110730567681
591_799063482566066176
592_798933969379225600
593_798925684722855936
594_798705661114773508
595_798701998996647937
596_798697898615730177
597_798694562394996736
598_798686750113755136
599_798682547630837760
600_798673117451325440
601_798665375516884993
602_798644042770751489
603_798628517273620480
604_798585098161549313
605_798576900688019456
606_798340744599797760
607_798209839306514432
608_797971864723324932
609_797545162159308800
610_797236660651966464
611_797165961484890113
612_796904159865868288
613_796865951799083009
614_796759840936919040
615_796563435802726400
616_796484825502875648
617_796387464403357696
618_796177847564038144
619_796149749086875649
620_796125600683540480
621_796116448414461957
622_796080075804475393
623_796031486298386433
624_795464331001561088
625_795400264262053889
626_795076730285391872
627_794983741416415232
628_794926597468000259
629_794355576146903043
630_794332329137291264
631_794205286408003585
632_793962221541933056
633_793845145112371200
634_793614319594401792
635_793601777308463104
636_793500921481273345
637_793286476301799424
638_793271401113350145
639_793256262322548741
640_793241302385262592
641_793226087023144960
642_793210959003287553
643_793195938047070209
644_793180763617361921
645_793165685325201412
646_793150605191548928
647_793135492858580992
648_793120401413079041
649_792913359805018113
650_792883833364439040
651_792773781206999040
652_792394556390137856
653_792050063153438720
654_791821351946420224
655_791784077045166082
656_791780927877898241
657_791774931465953280
658_791672322847637504
659_791406955684368384
660_791312159183634433
661_791026214425268224
662_790987426131050500
663_790946055508652032
664_790723298204217344
665_790698755171364864
666_790581949425475584
667_790337589677002753
668_790277117346975746
669_790227638568808452
670_789986466051088384
671_789960241177853952
672_789903600034189313
673_789628658055020548
674_789599242079838210
675_789530877013393408
676_789314372632018944
677_789280767834746880
678_789268448748703744
679_789137962068021249
680_788908386943430656
681_788765914992902144
682_788552643979468800
683_788412144018661376
684_788178268662984705
685_788150585577050112
686_788070120937619456
687_788039637453406209
688_787810552592695296
689_787717603741622272
690_787397959788929025
691_787322443945877504
692_787111942498508800
693_786963064373534720
694_786729988674449408
695_786709082849828864
696_786664955043049472
697_786595970293370880
698_786363235746385920
699_786286427768250368
700_786233965241827333
701_786051337297522688
702_786036967502913536
703_785927819176054784
704_785872687017132033
705_785639753186217984
706_785533386513321988
707_785515384317313025
708_785264754247995392
709_785170936622350336
710_784826020293709826
711_784517518371221505
712_784431430411685888
713_784183165795655680
714_784057939640352768
715_783839966405230592
716_783821107061198850
717_783695101801398276
718_783466772167098368
719_783391753726550016
720_783347506784731136
721_783334639985389568
722_783085703974514689
723_782969140009107456
724_782747134529531904
725_782722598790725632
726_782598640137187329
727_782305867769217024
728_782021823840026624
729_781955203444699136
730_781661882474196992
731_781655249211752448
732_781524693396357120
733_781308096455073793
734_781251288990355457
735_781163403222056960
736_780931614150983680
737_780858289093574656
738_780800785462489090
739_780601303617732608
740_780543529827336192
741_780496263422808064
742_780476555013349377
743_780459368902959104
744_780192070812196864
745_780092040432480260
746_780074436359819264
747_779834332596887552
748_779377524342161408
749_779124354206535695
750_779123168116150273:[{'code': 144, 'message': 'No status found with that ID.'}]
751_779056095788752897
752_778990705243029504
753_778774459159379968
754_778764940568104960
755_778748913645780993
756_778650543019483137
757_778624900596654080
758_778408200802557953
759_778396591732486144
760_778383385161035776
761_778286810187399168
762_778039087836069888
763_778027034220126208
764_777953400541634568
765_777885040357281792
766_777684233540206592
767_777641927919427584
768_777621514455814149
769_777189768882946048
770_776819012571455488
771_776813020089548800
772_776477788987613185
773_776249906839351296
774_776218204058357768
775_776201521193218049
776_776113305656188928
777_776088319444877312
778_775898661951791106
779_775842724423557120
780_775733305207554048
781_775729183532220416
782_775364825476165632
783_775350846108426240
784_775096608509886464:[{'code': 144, 'message': 'No status found with that ID.'}]
785_775085132600442880
786_774757898236878852
787_774639387460112384
788_774314403806253056
789_773985732834758656
790_773922284943896577
791_773704687002451968
792_773670353721753600
793_773547596996571136
794_773336787167145985
795_773308824254029826
796_773247561583001600
797_773191612633579521
798_772877495989305348
799_772826264096874500
800_772615324260794368
801_772581559778025472
802_772193107915964416
803_772152991789019136
804_772117678702071809
805_772114945936949249
806_772102971039580160
807_771908950375665664
808_771770456517009408
809_771500966810099713
810_771380798096281600
811_771171053431250945
812_771136648247640064
813_771102124360998913
814_771014301343748096
815_771004394259247104:[{'code': 179, 'message': 'Sorry, you are not authorized to see this status.'}]
816_770787852854652928
817_770772759874076672
818_770743923962707968:[{'code': 144, 'message': 'No status found with that ID.'}]
819_770655142660169732
820_770414278348247044
821_770293558247038976
822_770093767776997377
823_770069151037685760
824_769940425801170949
825_769695466921623552
826_769335591808995329
827_769212283578875904
828_768970937022709760
829_768909767477751808
830_768855141948723200
831_768609597686943744
832_768596291618299904
833_768554158521745409
834_768473857036525572
835_768193404517830656
836_767884188863397888
837_767754930266464257
838_767500508068192258
839_767191397493538821
840_767122157629476866
841_766864461642756096
842_766793450729734144
843_766714921925144576
844_766693177336135680
845_766423258543644672
846_766313316352462849
847_766078092750233600
848_766069199026450432
849_766008592277377025
850_765719909049503744
851_765669560888528897
852_765395769549590528
853_765371061932261376
854_765222098633691136
855_764857477905154048
856_764259802650378240
857_763956972077010945
858_763837565564780549
859_763183847194451968
860_763167063695355904
861_763103485927849985
862_762699858130116608
863_762471784394268675
864_762464539388485633
865_762316489655476224
866_762035686371364864
867_761976711479193600
868_761750502866649088
869_761745352076779520
870_761672994376806400
871_761599872357261312
872_761371037149827077
873_761334018830917632
874_761292947749015552
875_761227390836215808
876_761004547850530816
877_760893934457552897
878_760656994973933572
879_760641137271070720
880_760539183865880579
881_760521673607086080
882_760290219849637889
883_760252756032651264
884_760190180481531904
885_760153949710192640
886_759943073749200896
887_759923798737051648
888_759846353224826880
889_759793422261743616
890_759566828574212096:[{'code': 144, 'message': 'No status found with that ID.'}]
891_759557299618865152
892_759447681597108224
893_759446261539934208
894_759197388317847553
895_759159934323924993
896_759099523532779520
897_759047813560868866
Rate limit reached. Sleeping for: 291
898_758854675097526272
899_758828659922702336
900_758740312047005698
901_758474966123810816
902_758467244762497024
903_758405701903519748
904_758355060040593408
905_758099635764359168
906_758041019896193024
907_757741869644341248
908_757729163776290825
909_757725642876129280
910_757611664640446465
911_757597904299253760
912_757596066325864448
913_757400162377592832
914_757393109802180609
915_757354760399941633
916_756998049151549440
917_756939218950160384
918_756651752796094464
919_756526248105566208
920_756303284449767430
921_756288534030475264
922_756275833623502848
923_755955933503782912
924_755206590534418437
925_755110668769038337
926_754874841593970688
927_754856583969079297
928_754747087846248448
929_754482103782404096
930_754449512966619136
931_754120377874386944
932_754011816964026368:[{'code': 144, 'message': 'No status found with that ID.'}]
933_753655901052166144
934_753420520834629632
935_753398408988139520
936_753375668877008896
937_753298634498793472
938_753294487569522689
939_753039830821511168
940_753026973505581056
941_752932432744185856
942_752917284578922496
943_752701944171524096
944_752682090207055872
945_752660715232722944
946_752568224206688256
947_752519690950500352
948_752334515931054080
949_752309394570878976
950_752173152931807232
951_751950017322246144
952_751937170840121344
953_751830394383790080
954_751793661361422336
955_751598357617971201
956_751583847268179968
957_751538714308972544
958_751456908746354688
959_751251247299190784
960_751205363882532864
961_751132876104687617
962_750868782890057730
963_750719632563142656
964_750506206503038976
965_750429297815552001
966_750383411068534784
967_750381685133418496
968_750147208377409536
969_750132105863102464
970_750117059602808832
971_750101899009982464
972_750086836815486976
973_750071704093859840
974_750056684286914561
975_750041628174217216
976_750026558547456000
977_750011400160841729
978_749996283729883136
979_749981277374128128
980_749774190421639168
981_749417653287129088
982_749403093750648834
983_749395845976588288
984_749317047558017024
985_749075273010798592
986_749064354620928000
987_749036806121881602
988_748977405889503236
989_748932637671223296
990_748705597323898880
991_748699167502000129
992_748692773788876800
993_748575535303884801
994_748568946752774144
995_748346686624440324
996_748337862848962560
997_748324050481647620
998_748307329658011649
999_748220828303695873
1000_747963614829678593
1001_747933425676525569
1002_747885874273214464
1003_747844099428986880
1004_747816857231626240
1005_747651430853525504
1006_747648653817413632
1007_747600769478692864
1008_747594051852075008
1009_747512671126323200
1010_747461612269887489
1011_747439450712596480
1012_747242308580548608
1013_747219827526344708
1014_747204161125646336
1015_747103485104099331
1016_746906459439529985
1017_746872823977771008
1018_746818907684614144
1019_746790600704425984
1020_746757706116112384
1021_746726898085036033
1022_746542875601690625
1023_746521445350707200
1024_746507379341139972
1025_746369468511756288
1026_746131877086527488
1027_746056683365994496
1028_745789745784041472
1029_745712589599014916
1030_745433870967832576
1031_745422732645535745
1032_745314880350101504
1033_745074613265149952
1034_745057283344719872
1035_744995568523612160
1036_744971049620602880
1037_744709971296780288
1038_744334592493166593
1039_744234799360020481
1040_744223424764059648
1041_743980027717509120
1042_743895849529389061
1043_743835915802583040
1044_743609206067040256
1045_743595368194129920
1046_743545585370791937
1047_743510151680958465
1048_743253157753532416
1049_743222593470234624
1050_743210557239623680
1051_742534281772302336
1052_742528092657332225
1053_742465774154047488
1054_742423170473463808
1055_742385895052087300
1056_742161199639494656
1057_742150209887731712
1058_741793263812808706
1059_741743634094141440
1060_741438259667034112
1061_741303864243200000
1062_741099773336379392
1063_741067306818797568
1064_740995100998766593
1065_740711788199743490
1066_740699697422163968
1067_740676976021798912
1068_740373189193256964
1069_740365076218183684
1070_740359016048689152
1071_740214038584557568
1072_739979191639244800
1073_739932936087216128
1074_739844404073074688
1075_739623569819336705
1076_739606147276148736
1077_739544079319588864
1078_739485634323156992
1079_739238157791694849
1080_738891149612572673
1081_738885046782832640
1082_738883359779196928
1083_738537504001953792
1084_738402415918125056
1085_738184450748633089
1086_738166403467907072
1087_738156290900254721
1088_737826014890496000
1089_737800304142471168
1090_737678689543020544
1091_737445876994609152
1092_737322739594330112
1093_737310737551491075
1094_736736130620620800
1095_736392552031657984
1096_736365877722001409
1097_736225175608430592
1098_736010884653420544
1099_735991953473572864
1100_735648611367784448
1101_735635087207878657
1102_735274964362878976
1103_735256018284875776
1104_735137028879360001
1105_734912297295085568
1106_734787690684657664
1107_734776360183431168
1108_734559631394082816
1109_733828123016450049
1110_733822306246479872
1111_733482008106668032
1112_733460102733135873
1113_733109485275860992
1114_732732193018155009
1115_732726085725589504
1116_732585889486888962
1117_732375214819057664
1118_732005617171337216
1119_731285275100512256
1120_731156023742988288
1121_730924654643314689
1122_730573383004487680
1123_730427201120833536
1124_730211855403241472
1125_730196704625098752
1126_729854734790754305
1127_729838605770891264
1128_729823566028484608
1129_729463711119904772
1130_729113531270991872
1131_728986383096946689
1132_728760639972315136
1133_728751179681943552
1134_728653952833728512
1135_728409960103686147
1136_728387165835677696
1137_728046963732717569
1138_728035342121635841
1139_728015554473250816
1140_727685679342333952
1141_727644517743104000
1142_727524757080539137
1143_727314416056803329
1144_727286334147182592
1145_727175381690781696
1146_727155742655025152
1147_726935089318363137
1148_726887082820554753
1149_726828223124897792
1150_726224900189511680
1151_725842289046749185
1152_725786712245440512
1153_725729321944506368
1154_725458796924002305
1155_724983749226668032
1156_724771698126512129
1157_724405726123311104
1158_724049859469295616
1159_724046343203856385
1160_724004602748780546
1161_723912936180330496
1162_723688335806480385
1163_723673163800948736
1164_723179728551723008
1165_722974582966214656
1166_722613351520608256
1167_721503162398597120
1168_721001180231503872
1169_720785406564900865
1170_720775346191278080
1171_720415127506415616
1172_720389942216527872
1173_720340705894408192
1174_720059472081784833
1175_720043174954147842
1176_719991154352222208
1177_719704490224398336
1178_719551379208073216
1179_719367763014393856
1180_719339463458033665
1181_719332531645071360
1182_718971898235854848
1183_718939241951195136
1184_718631497683582976
1185_718613305783398402
1186_718540630683709445
1187_718460005985447936
1188_718454725339934721
1189_718246886998687744
1190_718234618122661888
1191_717841801130979328
1192_717790033953034240
1193_717537687239008257
1194_717428917016076293
1195_717421804990701568
1196_717047459982213120
1197_717009362452090881
1198_716802964044845056
1199_716791146589110272
1200_716730379797970944
1201_716447146686459905
1202_716439118184652801
1203_716285507865542656
1204_716080869887381504
1205_715928423106027520
1206_715758151270801409
1207_715733265223708672
1208_715704790270025728
1209_715696743237730304
1210_715680795826982913
1211_715360349751484417
1212_715342466308784130
1213_715220193576927233
1214_715200624753819648
1215_715009755312439296
1216_714982300363173890
1217_714962719905021952
1218_714957620017307648
1219_714631576617938945
1220_714606013974974464
1221_714485234495041536
1222_714258258790387713
1223_714251586676113411
1224_714214115368108032
1225_714141408463036416
1226_713919462244790272
1227_713909862279876608
1228_713900603437621249
1229_713761197720473600
1230_713411074226274305
1231_713177543487135744
1232_713175907180089344
1233_712809025985978368
1234_712717840512598017
1235_712668654853337088
1236_712438159032893441
1237_712309440758808576
1238_712097430750289920
1239_712092745624633345
1240_712085617388212225
1241_712065007010385924
1242_711998809858043904
1243_711968124745228288
1244_711743778164514816
1245_711732680602345472
1246_711694788429553666
1247_711652651650457602
1248_711363825979756544
1249_711306686208872448
1250_711008018775851008
1251_710997087345876993
1252_710844581445812225
1253_710833117892898816
1254_710658690886586372
1255_710609963652087808
1256_710588934686908417
1257_710296729921429505
1258_710283270106132480
1259_710272297844797440
1260_710269109699739648
1261_710153181850935296
1262_710140971284037632
1263_710117014656950272
1264_709918798883774466
1265_709901256215666688
1266_709852847387627521
1267_709566166965075968
1268_709556954897764353
1269_709519240576036864
1270_709449600415961088
1271_709409458133323776
1272_709225125749587968
1273_709207347839836162
1274_709198395643068416
1275_709179584944730112
1276_709158332880297985
1277_709042156699303936
1278_708853462201716736
1279_708845821941387268
1280_708834316713893888
1281_708810915978854401
1282_708738143638450176
1283_708711088997666817
1284_708479650088034305
1285_708469915515297792
1286_708400866336894977
1287_708356463048204288
1288_708349470027751425
1289_708149363256774660
1290_708130923141795840
1291_708119489313951744
1292_708109389455101952
1293_708026248782585858
1294_707995814724026368
1295_707983188426153984
1296_707969809498152960
1297_707776935007539200
1298_707741517457260545
1299_707738799544082433
1300_707693576495472641
1301_707629649552134146
1302_707610948723478529
1303_707420581654872064
1304_707411934438625280
1305_707387676719185920
1306_707377100785885184
1307_707315916783140866
1308_707297311098011648
1309_707059547140169728
1310_707038192327901184
1311_707021089608753152
1312_707014260413456384
1313_706904523814649856
1314_706901761596989440
1315_706681918348251136
1316_706644897839910912
1317_706593038911545345
1318_706538006853918722
1319_706516534877929472
1320_706346369204748288
1321_706310011488698368
1322_706291001778950144
1323_706265994973601792
1324_706169069255446529
1325_706166467411222528
1326_706153300320784384
1327_705975130514706432
1328_705970349788291072
1329_705898680587526145
1330_705786532653883392
1331_705591895322394625
1332_705475953783398401
1333_705442520700944385
1334_705428427625635840
1335_705239209544720384
1336_705223444686888960
1337_705102439679201280
1338_705066031337840642
1339_704871453724954624
1340_704859558691414016
1341_704847917308362754
1342_704819833553219584
1343_704761120771465216
1344_704499785726889984
1345_704491224099647488
1346_704480331685040129
1347_704364645503647744
1348_704347321748819968
1349_704134088924532736
1350_704113298707505153
1351_704054845121142784
1352_703774238772166656
1353_703769065844768768
1354_703631701117943808
1355_703611486317502464
1356_703425003149250560
1357_703407252292673536
1358_703382836347330562
1359_703356393781329922
1360_703268521220972544
1361_703079050210877440
1362_703041949650034688
1363_702932127499816960
1364_702899151802126337
1365_702684942141153280
1366_702671118226825216
1367_702598099714314240
1368_702539513671897089
1369_702332542343577600
1370_702321140488925184
1371_702276748847800320
1372_702217446468493312
1373_701981390485725185
1374_701952816642965504
1375_701889187134500865
1376_701805642395348998
1377_701601587219795968
1378_701570477911896070
1379_701545186879471618
1380_701214700881756160
1381_700890391244103680
1382_700864154249383937
1383_700847567345688576
1384_700796979434098688
1385_700747788515020802
1386_700518061187723268
1387_700505138482569216
1388_700462010979500032
1389_700167517596164096
1390_700151421916807169
1391_700143752053182464
1392_700062718104104960
1393_700029284593901568
1394_700002074055016451
1395_699801817392291840
1396_699788877217865730
1397_699779630832685056
1398_699775878809702401
1399_699691744225525762
1400_699446877801091073
1401_699434518667751424
1402_699423671849451520
1403_699413908797464576
1404_699370870310113280
1405_699323444782047232
1406_699088579889332224
1407_699079609774645248
1408_699072405256409088
1409_699060279947165696
1410_699036661657767936
1411_698989035503689728
1412_698953797952008193
1413_698907974262222848
1414_698710712454139905
1415_698703483621523456
1416_698635131305795584
1417_698549713696649216
1418_698355670425473025
1419_698342080612007937
1420_698262614669991936
1421_698195409219559425
1422_698178924120031232
1423_697995514407682048
1424_697990423684476929
1425_697943111201378304
1426_697881462549430272
1427_697630435728322560
1428_697616773278015490
1429_697596423848730625
1430_697575480820686848
1431_697516214579523584
1432_697482927769255936
1433_697463031882764288
1434_697270446429966336
1435_697259378236399616
1436_697255105972801536
1437_697242256848379904
1438_696900204696625153
1439_696894894812565505
1440_696886256886657024
1441_696877980375769088
1442_696754882863349760
1443_696744641916489729
1444_696713835009417216
1445_696518437233913856
1446_696490539101908992
1447_696488710901260288
1448_696405997980676096
1449_696100768806522880
1450_695816827381944320
1451_695794761660297217
1452_695767669421768709
1453_695629776980148225
1454_695446424020918272
1455_695409464418041856
1456_695314793360662529
1457_695095422348574720
1458_695074328191332352
1459_695064344191721472
1460_695051054296211456
1461_694925794720792577
1462_694905863685980160
1463_694669722378485760
1464_694356675654983680
1465_694352839993344000
1466_694342028726001664
1467_694329668942569472
1468_694206574471057408
1469_694183373896572928
1470_694001791655137281
1471_693993230313091072
1472_693942351086120961
1473_693647888581312512
1474_693644216740769793
1475_693642232151285760
1476_693629975228977152
1477_693622659251335168
1478_693590843962331137
1479_693582294167244802
1480_693486665285931008
1481_693280720173801472
1482_693267061318012928
1483_693262851218264065
1484_693231807727280129
1485_693155686491000832
1486_693109034023534592
1487_693095443459342336
1488_692919143163629568
1489_692905862751522816
1490_692901601640583168
1491_692894228850999298
1492_692828166163931137
1493_692752401762250755
1494_692568918515392513
1495_692535307825213440
1496_692530551048294401
1497_692423280028966913
1498_692417313023332352
1499_692187005137076224
1500_692158366030913536
1501_692142790915014657
1502_692041934689402880
1503_692017291282812928
1504_691820333922455552
1505_691793053716221953
1506_691756958957883396
1507_691675652215414786
1508_691483041324204033
1509_691459709405118465
1510_691444869282295808
1511_691416866452082688
1512_691321916024623104
1513_691096613310316544
1514_691090071332753408
1515_690989312272396288
1516_690959652130045952
1517_690938899477221376
1518_690932576555528194
1519_690735892932222976
1520_690728923253055490
1521_690690673629138944
1522_690649993829576704
1523_690607260360429569
1524_690597161306841088
1525_690400367696297985
1526_690374419777196032
1527_690360449368465409
1528_690348396616552449
1529_690248561355657216
1530_690021994562220032
1531_690015576308211712
1532_690005060500217858
1533_689999384604450816
1534_689993469801164801
1535_689977555533848577
1536_689905486972461056
1537_689877686181715968
1538_689835978131935233
1539_689661964914655233
1540_689659372465688576
1541_689623661272240129
1542_689599056876867584
1543_689557536375177216
1544_689517482558820352
1545_689289219123089408
1546_689283819090870273
1547_689280876073582592
1548_689275259254616065
1549_689255633275777024
1550_689154315265683456
1551_689143371370250240
1552_688916208532455424
1553_688908934925697024
1554_688898160958271489
1555_688894073864884227
1556_688828561667567616
1557_688804835492233216
1558_688789766343622656
1559_688547210804498433
1560_688519176466644993
1561_688385280030670848
1562_688211956440801280
1563_688179443353796608
1564_688116655151435777
1565_688064179421470721
1566_687841446767013888
1567_687826841265172480
1568_687818504314159109
1569_687807801670897665
1570_687732144991551489
1571_687704180304273409
1572_687664829264453632
1573_687494652870668288
1574_687480748861947905
1575_687476254459715584
1576_687460506001633280
1577_687399393394311168
1578_687317306314240000
1579_687312378585812992
1580_687127927494963200
1581_687124485711986689
1582_687109925361856513
1583_687102708889812993
1584_687096057537363968
1585_686947101016735744
1586_686760001961103360
1587_686749460672679938
1588_686730991906516992
1589_686683045143953408
1590_686618349602762752
1591_686606069955735556
1592_686394059078897668
1593_686386521809772549
1594_686377065986265092
1595_686358356425093120
1596_686286779679375361
1597_686050296934563840
1598_686035780142297088
1599_686034024800862208
1600_686007916130873345
1601_686003207160610816
1602_685973236358713344
1603_685943807276412928
1604_685906723014619143
1605_685681090388975616
1606_685667379192414208
1607_685663452032069632
1608_685641971164143616
1609_685547936038666240
1610_685532292383666176
1611_685325112850124800
1612_685321586178670592
1613_685315239903100929
1614_685307451701334016
1615_685268753634967552
1616_685198997565345792
1617_685169283572338688
1618_684969860808454144
1619_684959798585110529
1620_684940049151070208
1621_684926975086034944
1622_684914660081053696
1623_684902183876321280
1624_684880619965411328
1625_684830982659280897
1626_684800227459624960
1627_684594889858887680
1628_684588130326986752
1629_684567543613382656
1630_684538444857667585
1631_684481074559381504
1632_684460069371654144
1633_684241637099323392
1634_684225744407494656
1635_684222868335505415
1636_684200372118904832
1637_684195085588783105
1638_684188786104872960
1639_684177701129875456
1640_684147889187209216
1641_684122891630342144
1642_684097758874210310
1643_683857920510050305
1644_683852578183077888
1645_683849932751646720
1646_683834909291606017
1647_683828599284170753
1648_683773439333797890
1649_683742671509258241
1650_683515932363329536
1651_683498322573824003
1652_683481228088049664
1653_683462770029932544
1654_683449695444799489
1655_683391852557561860
1656_683357973142474752
1657_683142553609318400
1658_683111407806746624
1659_683098815881154561
1660_683078886620553216
1661_683030066213818368
1662_682962037429899265
1663_682808988178739200
1664_682788441537560576
1665_682750546109968385
1666_682697186228989953
1667_682662431982772225
1668_682638830361513985
1669_682429480204398592
1670_682406705142087680
1671_682393905736888321
1672_682389078323662849
1673_682303737705140231
1674_682259524040966145
1675_682242692827447297
1676_682088079302213632
1677_682059653698686977
1678_682047327939461121
1679_682032003584274432
1680_682003177596559360
1681_681981167097122816
1682_681891461017812993
1683_681694085539872773
1684_681679526984871937
1685_681654059175129088
1686_681610798867845120
1687_681579835668455424
1688_681523177663676416
1689_681340665377193984
1690_681339448655802368
1691_681320187870711809
1692_681302363064414209
1693_681297372102656000
1694_681281657291280384
1695_681261549936340994
1696_681242418453299201
1697_681231109724700672
1698_681193455364796417
1699_680970795137544192
1700_680959110691590145
1701_680940246314430465
1702_680934982542561280
1703_680913438424612864
1704_680889648562991104
1705_680836378243002368
1706_680805554198020098
1707_680801747103793152
1708_680798457301471234
1709_680609293079592961
1710_680583894916304897
1711_680497766108381184
1712_680494726643068929
1713_680473011644985345
1714_680440374763077632
1715_680221482581123072
1716_680206703334408192
1717_680191257256136705
1718_680176173301628928
1719_680161097740095489
1720_680145970311643136
1721_680130881361686529
1722_680115823365742593
1723_680100725817409536
1724_680085611152338944
1725_680070545539371008
1726_680055455951884288:[{'code': 144, 'message': 'No status found with that ID.'}]
1727_679877062409191424
1728_679872969355714560
1729_679862121895714818
1730_679854723806179328
1731_679844490799091713
1732_679828447187857408
1733_679777920601223168
1734_679736210798047232
1735_679729593985699840
1736_679722016581222400
1737_679530280114372609
1738_679527802031484928
1739_679511351870550016
1740_679503373272485890
1741_679475951516934144
1742_679462823135686656
1743_679405845277462528
1744_679158373988876288
1745_679148763231985668
1746_679132435750195208
1747_679111216690831360
1748_679062614270468097
1749_679047485189439488
1750_679001094530465792
1751_678991772295516161
1752_678969228704284672
1753_678800283649069056
1754_678798276842360832
1755_678774928607469569
1756_678767140346941444
1757_678764513869611008
1758_678755239630127104
1759_678740035362037760
1760_678708137298427904
1761_678675843183484930
1762_678643457146150913
1763_678446151570427904
1764_678424312106393600
1765_678410210315247616
1766_678399652199309312
1767_678396796259975168
1768_678389028614488064
1769_678380236862578688
1770_678341075375947776
1771_678334497360859136
1772_678278586130948096
1773_678255464182861824
1774_678023323247357953
1775_678021115718029313
1776_677961670166224897
1777_677918531514703872
1778_677895101218201600
1779_677716515794329600
1780_677700003327029250
1781_677698403548192770
1782_677687604918272002
1783_677673981332312066
1784_677662372920729601
1785_677644091929329666
1786_677573743309385728
1787_677565715327688705
1788_677557565589463040
1789_677547928504967168
1790_677530072887205888
1791_677335745548390400
1792_677334615166730240
1793_677331501395156992
1794_677328882937298944
1795_677314812125323265
1796_677301033169788928
1797_677269281705472000
Rate limit reached. Sleeping for: 391
1798_677228873407442944 1799_677187300187611136 1800_676975532580409345 1801_676957860086095872 1802_676949632774234114 1803_676948236477857792 1804_676946864479084545 1805_676942428000112642 1806_676936541936185344 1807_676916996760600576 1808_676897532954456065 1809_676864501615042560 1810_676821958043033607 1811_676819651066732545 1812_676811746707918848 1813_676776431406465024 1814_676617503762681856 1815_676613908052996102 1816_676606785097199616 1817_676603393314578432 1818_676593408224403456 1819_676590572941893632 1820_676588346097852417 1821_676582956622721024 1822_676575501977128964 1823_676533798876651520 1824_676496375194980353 1825_676470639084101634 1826_676440007570247681 1827_676430933382295552 1828_676263575653122048 1829_676237365392908289 1830_676219687039057920 1831_676215927814406144 1832_676191832485810177 1833_676146341966438401 1834_676121918416756736 1835_676101918813499392 1836_676098748976615425 1837_676089483918516224 1838_675898130735476737 1839_675891555769696257 1840_675888385639251968 1841_675878199931371520 1842_675870721063669760 1843_675853064436391936 1844_675849018447167488 1845_675845657354215424 1846_675822767435051008 1847_675820929667219457 1848_675798442703122432 1849_675781562965868544 1850_675740360753160193 1851_675710890956750848 1852_675707330206547968 1853_675706639471788032 1854_675534494439489536 1855_675531475945709568 1856_675522403582218240 1857_675517828909424640 1858_675501075957489664 1859_675497103322386432 1860_675489971617296384 1861_675483430902214656 1862_675432746517426176 1863_675372240448454658 1864_675362609739206656 1865_675354435921575936 1866_675349384339542016 1867_675334060156301312 1868_675166823650848770 1869_675153376133427200 1870_675149409102012420 1871_675147105808306176 1872_675146535592706048 1873_675145476954566656 1874_675135153782571009 1875_675113801096802304 1876_675111688094527488 1877_675109292475830276 1878_675047298674663426 1879_675015141583413248 1880_675006312288268288 1881_675003128568291329 1882_674999807681908736 1883_674805413498527744 1884_674800520222154752 1885_674793399141146624 1886_674790488185167872 1887_674788554665512960 1888_674781762103414784 1889_674774481756377088 1890_674767892831932416 1891_674764817387900928 1892_674754018082705410 1893_674752233200820224 1894_674743008475090944 1895_674742531037511680 1896_674739953134403584 1897_674737130913071104 1898_674690135443775488 1899_674670581682434048 1900_674664755118911488 1901_674646392044941312 1902_674644256330530816 1903_674638615994089473 1904_674632714662858753 1905_674606911342424069 1906_674468880899788800 1907_674447403907457024 1908_674436901579923456 1909_674422304705744896 1910_674416750885273600 1911_674410619106390016 1912_674394782723014656 1913_674372068062928900 1914_674330906434379776 1915_674318007229923329 1916_674307341513269249 1917_674291837063053312 1918_674271431610523648 1919_674269164442398721 1920_674265582246694913 1921_674262580978937856 1922_674255168825880576 1923_674082852460433408 1924_674075285688614912 1925_674063288070742018 1926_674053186244734976 1927_674051556661161984 1928_674045139690631169 1929_674042553264685056 1930_674038233588723717 1931_674036086168010753 1932_674024893172875264 1933_674019345211760640 1934_674014384960745472 1935_674008982932058114 1936_673956914389192708 1937_673919437611909120 1938_673906403526995968 1939_673887867907739649 1940_673716320723169284 1941_673715861853720576 1942_673711475735838725 1943_673709992831262724 1944_673708611235921920 1945_673707060090052608 1946_673705679337693185 1947_673700254269775872 1948_673697980713705472 1949_673689733134946305 1950_673688752737402881 1951_673686845050527744 1952_673680198160809984 1953_673662677122719744 1954_673656262056419329 1955_673636718965334016 1956_673612854080196609 1957_673583129559498752 1958_673580926094458881 1959_673576835670777856 1960_673363615379013632 1961_673359818736984064 1962_673355879178194945 1963_673352124999274496 1964_673350198937153538 1965_673345638550134785 1966_673343217010679808 1967_673342308415348736 1968_673320132811366400 1969_673317986296586240 1970_673295268553605120 1971_673270968295534593 1972_673240798075449344 1973_673213039743795200 1974_673148804208660480 1975_672997845381865473 1976_672995267319328768 1977_672988786805112832 1978_672984142909456390 1979_672980819271634944 1980_672975131468300288 1981_672970152493887488 1982_672968025906282496 1983_672964561327235073 1984_672902681409806336 1985_672898206762672129 1986_672884426393653248 1987_672877615439593473 1988_672834301050937345 1989_672828477930868736 1990_672640509974827008 1991_672622327801233409 1992_672614745925664768 1993_672609152938721280 1994_672604026190569472 1995_672594978741354496 1996_672591762242805761 1997_672591271085670400 1998_672538107540070400 1999_672523490734551040 2000_672488522314567680 2001_672482722825261057 2002_672481316919734272 2003_672475084225949696 2004_672466075045466113 2005_672272411274932228 2006_672267570918129665 2007_672264251789176834 2008_672256522047614977 2009_672254177670729728 2010_672248013293752320 2011_672245253877968896 2012_672239279297454080 2013_672231046314901505 2014_672222792075620352 2015_672205392827572224 2016_672169685991993344 2017_672160042234327040 2018_672139350159835138 2019_672125275208069120 2020_672095186491711488 2021_672082170312290304 2022_672068090318987265 2023_671896809300709376 2024_671891728106971137 2025_671882082306625538 2026_671879137494245376 2027_671874878652489728 2028_671866342182637568 2029_671855973984772097 2030_671789708968640512 2031_671768281401958400 2032_671763349865160704 2033_671744970634719232 2034_671743150407421952 2035_671735591348891648 2036_671729906628341761 2037_671561002136281088 2038_671550332464455680 2039_671547767500775424 2040_671544874165002241 2041_671542985629241344 2042_671538301157904385 2043_671536543010570240 2044_671533943490011136 2045_671528761649688577 2046_671520732782923777 2047_671518598289059840 2048_671511350426865664 2049_671504605491109889 2050_671497587707535361 2051_671488513339211776 2052_671486386088865792 2053_671485057807351808 2054_671390180817915904 2055_671362598324076544 2056_671357843010908160 2057_671355857343524864 2058_671347597085433856 2059_671186162933985280 2060_671182547775299584 2061_671166507850801152 2062_671163268581498880 2063_671159727754231808 2064_671154572044468225 2065_671151324042559489 2066_671147085991960577 2067_671141549288370177 2068_671138694582165504 2069_671134062904504320 2070_671122204919246848 2071_671115716440031232 2072_671109016219725825 2073_670995969505435648 2074_670842764863651840 2075_670840546554966016 2076_670838202509447168 2077_670833812859932673 2078_670832455012716544 2079_670826280409919488 2080_670823764196741120 2081_670822709593571328 2082_670815497391357952 2083_670811965569282048 2084_670807719151067136 2085_670804601705242624 2086_670803562457407488 2087_670797304698376195 2088_670792680469889025 2089_670789397210615808 2090_670786190031921152 2091_670783437142401025 2092_670782429121134593 2093_670780561024270336 2094_670778058496974848 2095_670764103623966721 2096_670755717859713024 2097_670733412878163972 2098_670727704916926465 2099_670717338665226240 2100_670704688707301377 2101_670691627984359425 2102_670679630144274432 2103_670676092097810432 2104_670668383499735048 2105_670474236058800128 2106_670468609693655041 2107_670465786746662913 2108_670452855871037440 2109_670449342516494336 2110_670444955656130560 2111_670442337873600512 2112_670435821946826752 2113_670434127938719744 2114_670433248821026816 2115_670428280563085312 2116_670427002554466305 2117_670421925039075328 2118_670420569653809152 2119_670417414769758208 2120_670411370698022913 2121_670408998013820928 2122_670403879788544000 2123_670385711116361728 2124_670374371102445568 2125_670361874861563904 2126_670338931251150849 2127_670319130621435904 2128_670303360680108032 2129_670290420111441920 2130_670093938074779648 2131_670086499208155136 2132_670079681849372674 2133_670073503555706880 2134_670069087419133954 2135_670061506722140161 2136_670055038660800512 2137_670046952931721218 2138_670040295598354432 2139_670037189829525505 2140_670003130994700288 2141_669993076832759809 2142_669972011175813120 2143_669970042633789440 2144_669942763794931712 2145_669926384437997569 2146_669923323644657664 2147_669753178989142016 2148_669749430875258880 2149_669684865554620416 2150_669683899023405056 2151_669682095984410625 2152_669680153564442624 2153_669661792646373376 2154_669625907762618368 2155_669603084620980224 2156_669597912108789760 2157_669583744538451968 2158_669573570759163904 2159_669571471778410496 2160_669567591774625800 2161_669564461267722241 2162_669393256313184256 2163_669375718304980992 2164_669371483794317312 2165_669367896104181761 2166_669363888236994561 2167_669359674819481600 2168_669354382627049472 2169_669353438988365824 2170_669351434509529089 2171_669328503091937280 2172_669327207240699904 2173_669324657376567296 2174_669216679721873412 2175_669214165781868544 2176_669203728096960512 2177_669037058363662336 2178_669015743032369152 2179_669006782128353280 2180_669000397445533696 2181_668994913074286592 2182_668992363537309700 2183_668989615043424256 2184_668988183816871936 2185_668986018524233728 2186_668981893510119424 2187_668979806671884288 2188_668975677807423489 2189_668967877119254528 2190_668960084974809088 2191_668955713004314625 2192_668932921458302977 2193_668902994700836864 2194_668892474547511297 2195_668872652652679168 2196_668852170888998912 2197_668826086256599040 2198_668815180734689280 2199_668779399630725120 2200_668655139528511488 2201_668645506898350081 2202_668643542311546881 2203_668641109086707712 2204_668636665813057536 2205_668633411083464705 2206_668631377374486528 2207_668627278264475648 2208_668625577880875008 2209_668623201287675904 2210_668620235289837568 2211_668614819948453888 2212_668587383441514497 2213_668567822092664832 2214_668544745690562560 2215_668542336805281792 2216_668537837512433665 2217_668528771708952576 2218_668507509523615744 2219_668496999348633600 2220_668484198282485761 2221_668480044826800133 2222_668466899341221888 2223_668297328638447616 2224_668291999406125056 2225_668286279830867968 2226_668274247790391296 2227_668268907921326080 2228_668256321989451776 2229_668248472370458624 2230_668237644992782336 2231_668226093875376128 2232_668221241640230912 2233_668204964695683073 2234_668190681446379520 2235_668171859951755264 2236_668154635664932864 2237_668142349051129856 2238_668113020489474048 2239_667937095915278337 2240_667924896115245057 2241_667915453470232577 2242_667911425562669056 2243_667902449697558528 2244_667886921285246976 2245_667885044254572545 2246_667878741721415682 2247_667873844930215936 2248_667866724293877760 2249_667861340749471744 2250_667832474953625600 2251_667806454573760512 2252_667801013445750784 2253_667793409583771648 2254_667782464991965184 2255_667773195014021121 2256_667766675769573376 2257_667728196545200128 2258_667724302356258817 2259_667550904950915073 2260_667550882905632768 2261_667549055577362432 2262_667546741521195010 2263_667544320556335104 2264_667538891197542400 2265_667534815156183040 2266_667530908589760512 2267_667524857454854144 2268_667517642048163840 2269_667509364010450944 2270_667502640335572993 2271_667495797102141441 2272_667491009379606528 2273_667470559035432960 2274_667455448082227200 2275_667453023279554560 2276_667443425659232256 2277_667437278097252352 2278_667435689202614272 2279_667405339315146752 2280_667393430834667520 2281_667369227918143488 2282_667211855547486208 2283_667200525029539841 2284_667192066997374976 2285_667188689915760640 2286_667182792070062081 2287_667177989038297088 2288_667176164155375616 2289_667174963120574464 2290_667171260800061440 2291_667165590075940865 2292_667160273090932737 2293_667152164079423490 2294_667138269671505920 2295_667119796878725120 2296_667090893657276420 2297_667073648344346624 2298_667070482143944705 2299_667065535570550784 2300_667062181243039745 2301_667044094246576128 2302_667012601033924608 2303_666996132027977728 2304_666983947667116034 2305_666837028449972224 2306_666835007768551424 2307_666826780179869698 2308_666817836334096384 2309_666804364988780544 2310_666786068205871104 2311_666781792255496192 2312_666776908487630848 2313_666739327293083650 2314_666701168228331520 2315_666691418707132416 2316_666649482315059201 2317_666644823164719104 2318_666454714377183233 2319_666447344410484738 2320_666437273139982337 2321_666435652385423360 2322_666430724426358785 2323_666428276349472768 2324_666421158376562688 2325_666418789513326592 2326_666411507551481857 2327_666407126856765440 2328_666396247373291520 2329_666373753744588802 2330_666362758909284353 2331_666353288456101888 2332_666345417576210432 2333_666337882303524864 2334_666293911632134144 2335_666287406224695296 2336_666273097616637952 2337_666268910803644416 2338_666104133288665088 2339_666102155909144576 2340_666099513787052032 2341_666094000022159362 2342_666082916733198337 2343_666073100786774016 2344_666071193221509120 2345_666063827256086533 2346_666058600524156928 2347_666057090499244032 2348_666055525042405380 2349_666051853826850816 2350_666050758794694657 2351_666049248165822465 2352_666044226329800704 2353_666033412701032449 2354_666029285002620928 2355_666020888022790149
with open(file_name , 'r') as file:
for each_line in file.readlines():
tweet_in_json = json.loads(each_line)
tweet_id = tweet_in_json['id']
retweet_count = tweet_in_json['retweet_count']
favorite_count = tweet_in_json['favorite_count']
df_list.append({'tweet_id' : tweet_id ,'favorite_count' : favorite_count,'retweet_count' : retweet_count})
twitter_archive_website = pd.DataFrame(df_list,columns = ['tweet_id','favorite_count','retweet_count'])
twitter_archive.head()
| tweet_id | in_reply_to_status_id | in_reply_to_user_id | timestamp | source | text | retweeted_status_id | retweeted_status_user_id | retweeted_status_timestamp | expanded_urls | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | NaN | NaN | 2017-08-01 16:23:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892420643555336193/photo/1 | 13 | 10 | Phineas | None | None | None | None |
| 1 | 892177421306343426 | NaN | NaN | 2017-08-01 00:17:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892177421306343426/photo/1 | 13 | 10 | Tilly | None | None | None | None |
| 2 | 891815181378084864 | NaN | NaN | 2017-07-31 00:18:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891815181378084864/photo/1 | 12 | 10 | Archie | None | None | None | None |
| 3 | 891689557279858688 | NaN | NaN | 2017-07-30 15:58:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891689557279858688/photo/1 | 13 | 10 | Darla | None | None | None | None |
| 4 | 891327558926688256 | NaN | NaN | 2017-07-29 16:00:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1 | 12 | 10 | Franklin | None | None | None | None |
twitter_archive.shape
(2356, 17)
twitter_archive.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2356 entries, 0 to 2355 Data columns (total 17 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2356 non-null int64 1 in_reply_to_status_id 78 non-null float64 2 in_reply_to_user_id 78 non-null float64 3 timestamp 2356 non-null object 4 source 2356 non-null object 5 text 2356 non-null object 6 retweeted_status_id 181 non-null float64 7 retweeted_status_user_id 181 non-null float64 8 retweeted_status_timestamp 181 non-null object 9 expanded_urls 2297 non-null object 10 rating_numerator 2356 non-null int64 11 rating_denominator 2356 non-null int64 12 name 2356 non-null object 13 doggo 2356 non-null object 14 floofer 2356 non-null object 15 pupper 2356 non-null object 16 puppo 2356 non-null object dtypes: float64(4), int64(3), object(10) memory usage: 313.0+ KB
twitter_archive.duplicated().sum()
0
twitter_archive.describe()
| tweet_id | in_reply_to_status_id | in_reply_to_user_id | retweeted_status_id | retweeted_status_user_id | rating_numerator | rating_denominator | |
|---|---|---|---|---|---|---|---|
| count | 2.356000e+03 | 7.800000e+01 | 7.800000e+01 | 1.810000e+02 | 1.810000e+02 | 2356.000000 | 2356.000000 |
| mean | 7.427716e+17 | 7.455079e+17 | 2.014171e+16 | 7.720400e+17 | 1.241698e+16 | 13.126486 | 10.455433 |
| std | 6.856705e+16 | 7.582492e+16 | 1.252797e+17 | 6.236928e+16 | 9.599254e+16 | 45.876648 | 6.745237 |
| min | 6.660209e+17 | 6.658147e+17 | 1.185634e+07 | 6.661041e+17 | 7.832140e+05 | 0.000000 | 0.000000 |
| 25% | 6.783989e+17 | 6.757419e+17 | 3.086374e+08 | 7.186315e+17 | 4.196984e+09 | 10.000000 | 10.000000 |
| 50% | 7.196279e+17 | 7.038708e+17 | 4.196984e+09 | 7.804657e+17 | 4.196984e+09 | 11.000000 | 10.000000 |
| 75% | 7.993373e+17 | 8.257804e+17 | 4.196984e+09 | 8.203146e+17 | 4.196984e+09 | 12.000000 | 10.000000 |
| max | 8.924206e+17 | 8.862664e+17 | 8.405479e+17 | 8.874740e+17 | 7.874618e+17 | 1776.000000 | 170.000000 |
twitter_archive.tweet_id.duplicated().sum()
0
twitter_archive['source'].value_counts()
<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 2221 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> 91 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> 33 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> 11 Name: source, dtype: int64
twitter_archive['text'].value_counts()
Please stop sending in saber-toothed tigers. This is getting ridiculous. We only rate dogs.\n...8/10 https://t.co/iAeQNueou8 1 Here's a puppo participating in the #ScienceMarch. Cleverly disguising her own doggo agenda. 13/10 would keep the planet habitable for https://t.co/cMhq16isel 1 This is Ralph. He's an interpretive dancer. 10/10 https://t.co/zoDdPyPFsa 1 Just received another perfect photo of dogs and the sunset. 12/10 https://t.co/9YmNcxA2Cc 1 This is Tyrone. He's a leaf wizard. Self-motivated. No eyes (tragic). Inspirational af. 11/10 enthusiasm is tangible https://t.co/pRp1Npucbz 1 This is Bode. He's a heavy sleeper. 9/10 https://t.co/YMkxhGWUqv 1 This is Kyle (pronounced 'Mitch'). He strives to be the best doggo he can be. 11/10 would pat on head approvingly https://t.co/aA2GiTGvlE 1 @roushfenway These are good dogs but 17/10 is an emotional impulse rating. More like 13/10s 1 Here's a very large dog. He has a date later. Politely asked this water person to check if his breath is bad. 12/10 good to go doggo https://t.co/EMYIdoblMR 1 This is Ellie. She's secretly ferocious. 12/10 very deadly pupper https://t.co/BF4BW8LUgb 1 This is Benji. He's Air Bud. It's a low effort costume but he pulls it off rather h*ckin well. 12/10 would happily get dunked on https://t.co/IbzT7DJvBo 1 Meet Cupcake. I would do unspeakable things for Cupcake. 11/10 https://t.co/6uLCWR9Efa 1 This pic is old but I hadn't seen it until today and had to share. Creative af. 13/10 very good boy, would pet well https://t.co/4kD16wMA1Z 1 Say hello to Clarence. He's a western Alkaline Pita. Very proud of himself for dismembering his stuffed dog pal 8/10 https://t.co/BHxr9O7wJY 1 Here we are witnessing a rare High Stepping Alaskan Floofer. 12/10 dangerously petable (vid by @TheMrsNux) https://t.co/K4s9IJh2jm 1 Just wanted to share this super rare Rainbow Floofer in case you guys haven't seen it yet. 13/10 colorful af https://t.co/CaG9MzD3WT 1 This is Oakley. He has a massive tumor growing on his head. Seems benign tho. 10/10 would pet around tumor https://t.co/7GQ7BTxywN 1 RT @Lin_Manuel: 11/10 would recommend. https://t.co/pnUF69K4xk 1 This is Smokey. He's having some sort of existential crisis. 10/10 hang in there pupper https://t.co/JmgF4dMpw0 1 This is Emma. She can't believe her last guess didn't hit. Convinced ur stacking them on top of each other. 10/10 https://t.co/JRV1dhBYwu 1 Martha is stunning how h*ckin dare you. 13/10 https://t.co/9uABQXgjwa 1 This is Buddy. He's gaining strength. Currently an F4 tornado with wind speeds up to 260mph. Very devastating. 9/10 https://t.co/qipZbshNsR 1 RT @dog_rates: This is Bruce. He never backs down from a challenge. 11/10 you got this Bruce https://t.co/aI7umZHIq7 1 This is Snicku. He's having trouble reading because he's a dog. Glasses only helped a little. Nap preferred. 12/10 would snug well https://t.co/cVLUasbKA5 1 RT @dog_rates: This is Coco. At first I thought she was a cloud but clouds don't bork with such passion. 12/10 would hug softly https://t.c… 1 This is Shikha. She just watched you drop a skittle on the ground and still eat it. Could not be less impressed. 12/10 superior puppo https://t.co/XZlZKd73go 1 This is an East African Chalupa Seal. We only rate dogs. Please only send in dogs. Thank you... 10/10 https://t.co/iHe6liLwWR 1 This is Hobbes. He was told he was going to the park. Ended up at the vet. H*ckin bamboozled. Quite pupset with you. 12/10 https://t.co/SSQE06XClS 1 This is Bailey. He thinks you should measure ear length for signs of growth instead. 12/10 https://t.co/IxM9IMKQq8 1 This is Dallas. Her tongue is ridiculous. 11/10 h*ckin proud af https://t.co/h4jhlH4EyG 1 Vine will be deeply missed. This was by far my favorite one. 14/10 https://t.co/roqIxCvEB3 1 This is a Wild Tuscan Poofwiggle. Careful not to startle. Rare tongue slip. One eye magical. 12/10 would def pet https://t.co/4EnShAQjv6 1 We only rate dogs. Pls stop sending in non-canines like this Jamaican Flop Seal. This is very very frustrating. 9/10 https://t.co/nc53zEN0hZ 1 Meet Tupawc. He's actually a Christian rapper. Doesn't even understand the concept of dollar signs. 10/10 great guy https://t.co/mCqgtqLDCW 1 Meet Banjo. He's a Peppercorn Shoop Da Whoop. Nails look lethal. Skeptical of luminescent orb 11/10 stay woke pupper https://t.co/H7NZFumpKq 1 This is Emmy. She was adopted today. Massive round of pupplause for Emmy and her new family. 14/10 for all involved https://t.co/cwtWnHMVpe 1 When a single soap orb changes your entire perception of the universe... 10/10 https://t.co/9eCXpVExJc 1 Here is a horned dog. Much grace. Can jump over moons (dam!). Paws not soft. Bad at barking. 7/10 can still pet tho https://t.co/2Su7gmsnZm 1 Neat dog. Lots of spikes. Always in push-up position. Laid a shit ton of eggs earlier. Super stellar pup. 10/10 https://t.co/ODqrL3zXYE 1 This is Kreg. He has the eyes of a tyrannical dictator. Will not rest until household is his. 10/10 https://t.co/TUeuaOmunV 1 This is Steven. He's inverted af. Also very helpful. Scans anything you want for free. Takes him a while tho. 7/10 https://t.co/tA0ZiQ7JcG 1 This is Jeffrey. He wasn't prepared to execute such advanced barkour. Still 11/10 would totally pet https://t.co/MuuwkkLrHh 1 Meet George. He looks slightly deflated but overall quite powerful. Not sure how that human restrained him. 12/10 would snug with permission https://t.co/o6E0hB3xZl 1 RT @dog_rates: This is Riley. His owner put a donut pillow around him and he loves it so much he won't let anyone take it off. 13/10 https:… 1 Say hello to Brutus and Jersey. They think they're the same size. Best furiends furever. Both 11/10 would pet simultaneously https://t.co/rkhCFfDtxB 1 This is Geno. He's a Wrinkled Baklavian Velveeta. Looks sad but that's just the extra skin. 11/10 would smoosh face https://t.co/Kxda28JmQ2 1 This is Louie. He's making quite a h*ckin mess. Doesn't seem to care. 12/10 jubilant af https://t.co/Z2g2YWPzX2 1 This is Gilbert. He's being chased by a battalion of miniature floof cows. 10/10 we all believe in you Gilbert https://t.co/wayKZkDRTG 1 This is Diogi. He fell in the pool as soon as he was brought home. Clumsy puppo. 12/10 would pet until dry https://t.co/ZxeRjMKaWt 1 Here's a wicked fast pupper. 12/10 camera could barely keep pup https://t.co/HtAR6gpUAu 1 This is Klein. These pics were taken a month apart. He knows he's a stud now. 12/10 total heartthrob https://t.co/guDkLrX8zV 1 This is Tyrus. He's a Speckled Centennial Ticonderoga. Terrified of floating red ball. Nifty bandana. 8/10 v petable https://t.co/HqM3YhCaaa 1 This is Rosie. She's a Benebark Cumberpatch. Sleepy af. 12/10 would snug for days https://t.co/NKuON5Al8i 1 This guy's dog broke. So sad. 9/10 would still pet https://t.co/BYiXJDEzv7 1 Meet Lilah. She agreed on one quick pic. Now she'd like to go mentally prepare for the onslaught of fireworks. 11/10 https://t.co/enCpXzZHkD 1 This is Timison. He just told an awful joke but is still hanging on to the hope that you'll laugh with him. 10/10 https://t.co/s2yYuHabWl 1 Can't do better than this lol. 10/10 for the owner https://t.co/yrqGyMZhW6 1 RT @rachaeleasler: these @dog_rates hats are 13/10 bean approved https://t.co/nRCdq4g9gG 1 This is Sage. He likes to burn shit. 10/10 https://t.co/nLYruSMRe6 1 Happy Easter from the squad! 🐇🐶 13/10 for all https://t.co/YMx4KWJUAB 1 Guys I'm getting real tired of this. We only rate dogs. Please don't send in other things like this Bulbasaur. 3/10 https://t.co/t5rQHl6W8M 1 Exotic handheld dog here. Appears unathletic. Feet look deadly. Can be thrown a great distance. 5/10 might pet idk https://t.co/Avq4awulqk 1 This is Balto. He's very content. Legendary tongue slippage. 12/10 would pet forever https://t.co/T7Jr4Gw4sC 1 This is Oscar. He's a world renowned snowball inspector. It's a ruff job but someone has to do it. 10/10 great guy https://t.co/vSufMAKm3C 1 This is Hamrick. He's covered in corn flakes. Silly pupper. Looks congested. 7/10 considerably petable https://t.co/ROPZcAMQKI 1 This is Flurpson. He can't believe it's not butter. 10/10 https://t.co/XD3ort1PsE 1 HE'S TRYING TO BE HIS OWN PERSON LET HIM GO 13/10\nhttps://t.co/LEZ8jR5txd 1 Say hello to Lily. She's not injured or anything. Just wants everyone to hear her. 9/10 clever af https://t.co/3xqGVH0Dhw 1 Say hello to Cody. He's been to like 80 countries and is way more cultured than you. He wanted me to say that. 10/10 https://t.co/Iv3flDTpXu 1 Everybody stop what you're doing and watch this video. Frank is stuck in a loop. 13/10 (Vid by @klbmatty) https://t.co/5AJs8TIV1U 1 This is Franklin. He's a yoga master. Trying to get rid of those rolls. Dedicated af. 11/10 keep it up pup https://t.co/S712MJXulD 1 This is Walter. He won't start hydrotherapy without his favorite floatie. 14/10 keep it pup Walter https://t.co/r28jFx9uyF 1 This pupper had to undergo emergency haircut surgery so he could hear again. 10/10 miraculous af https://t.co/fUyDIFkBwx 1 This is Arnie. He's afraid of his own bark. 12/10 would comfort https://t.co/ObT2tSxXit 1 This is Goose. He's a womanizer. Cheeky as h*ck, but also deep. Tongue slip game on another level. 13/10 will steal your girl https://t.co/V2WlACRJCN 1 This is Shnuggles. I would kill for Shnuggles. 13/10 https://t.co/GwvpQiQ7oQ 1 Meet Ash. He's just a head now. Lost his body during the Third Crusade. Still in good spirits. 10/10 would pet well https://t.co/NJj2uP0atK 1 This is Lucy. She knits. Specializes in toboggans. 10/10 I'd buy a toboggan from Lucy https://t.co/YE2XDHy4Yk 1 When you're so blinded by your systematic plagiarism that you forget what day it is. 0/10 https://t.co/YbEJPkg4Ag 1 This is Butters. He's not ready for Thanksgiving to be over. 10/10 poor Butters https://t.co/iTc578yDmY 1 This appears to be a Mongolian Presbyterian mix. Very tired. Tongue slip confirmed. 9/10 would lie down with https://t.co/mnioXo3IfP 1 This is Panda. He's happy af. 11/10 https://t.co/IOAk9i4UvE 1 For the last time, we only rate dogs. Pls stop sending other animals like this Duck-Billed Platypus. Thank you. 9/10 https://t.co/twxYcPOafl 1 This is Iroh. He's in a predicament. 12/10 someone help him https://t.co/KJAKO2kXsL 1 This is Zoey. Her dreams of becoming a hippo ballerina don't look promising. 9/10 it'll be ok puppers https://t.co/kR1fqy4NKK 1 I just love this pic. 11/10 this pupper is going places https://t.co/P16uhh1PbI 1 Here's a doggo that don't need no human. 12/10 independent af (vid by @MichelleLiuCee) https://t.co/vdgtdb6rON 1 When you accidentally open up the front facing camera. 10/10 https://t.co/jDXxZARQIZ 1 PUPPER NOOOOO BEHIND YOUUU 10/10 pls keep this pupper in your thoughts https://t.co/ZPfeRtOX0Q 1 This is Norman. Doesn't bark much. Very docile pup. Up to date on current events. Overall nifty pupper. 6/10 https://t.co/ntxsR98f3U 1 Here's a golden floofer helping with the groceries. Bed got in way. Still 11/10 helpful af (vid by @categoen) https://t.co/6ZRoZUWFmd 1 This is Rudy. He's going to be a star. 13/10 talented af (vid by @madalynrossi) https://t.co/Dph4FDGoMd 1 Here's a super supportive puppo participating in the Toronto #WomensMarch today. 13/10 https://t.co/nTz3FtorBc 1 *lets out a tiny screech and then goes into complete cardiac arrest* 12/10 https://t.co/az5PLGzVNJ 1 This is Ivar. She is a badass Viking warrior. Will sack your village. 10/10 savage af https://t.co/Dz6MiVssVU 1 Meet Chevy. He had a late breakfast and now has to choose between a late lunch or an early dinner. 11/10 very pupset https://t.co/goy9053wC7 1 We only rate dogs. Please stop sending in non-canines like this Alaskan Flop Turtle. This is very frustrating. 10/10 https://t.co/qXteK6Atxc 1 This is Sweet Pea. She hides in shoe boxes and waits for someone to pick her. Then she surpuprises them. 13/10 https://t.co/AyBEmx56MD 1 This is Jett. He is unimpressed by flower. 7/10 https://t.co/459qWNnV3F 1 Ok last one of these. I may try to make some myself. Anyway here ya go. 13/10 https://t.co/i9CDd1oEu8 1 This is Daniel. He's a neat pup. Exotic af. Custom paws. Leaps unannounced. Would totally pet. 7/10 daaamn Daniel https://t.co/5XaR0kj8cr 1 RT @dog_rates: This is Sierra. She's one precious pupper. Absolute 12/10. Been in and out of ICU her whole life. Help Sierra below\n\nhttps:/… 1 RT @dog_rates: I want to finally rate this iconic puppo who thinks the parade is all for him. 13/10 would absolutely attend https://t.co/5d… 1 RT @dog_rates: We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\nhttps://t… 1 Say hello to Bobb. Bobb is a Golden High Fescue & a proud father of 8. Bobb sleeps while the little pups play. 11/10 https://t.co/OmxouCZ8IY 1 RT @SchafeBacon2016: @dog_rates Slightly disturbed by the outright profanity, but confident doggos were involved. 11/10, would tailgate aga… 1 Meet Trooper & Maya. Trooper protects Maya from bad things like dognappers and Comcast. So touching. 11/10 for both https://t.co/c98k1IoZKy 1 Say hello to Chipson. He's aerodynamic af. No eyes (devastating). 9/10 would make sure he didn't bump into stuff https://t.co/V62rIva61J 1 @JODYHiGHROLLER it may be an 11/10 but what do I know 😉 1 This is Butter. She can have whatever she wants forever. 12/10 would hug softly https://t.co/x5gXRS1abq 1 We normally don't rate unicorns but this one has 3 ears so it must be super rare. 12/10 majestic af https://t.co/f9qlKiv39T 1 RT @dog_rates: This is Tyrone. He's a leaf wizard. Self-motivated. No eyes (tragic). Inspirational af. 11/10 enthusiasm is tangible https:/… 1 This is Django. He's a skilled assassin pupper. 10/10 https://t.co/w0YTuiRd1a 1 This is Leo. He's a personal triathlon coach. Currently overseeing this athlete's push-pups. H*ckin brutal. 13/10 would do all he asks of me https://t.co/FXZQtBcnTO 1 This is Hunter. He was playing with his ball minding his own business. Has no idea what happened to the carpet. 8/10 https://t.co/DbUTDI3u1R 1 This is Jaspers. He is a northeastern Gillette. Just got his license. Very excited. 10/10 they grow up so fast https://t.co/cieaOI0RuT 1 His name is Charley and he already has a new set of wheels thanks to donations. I heard his top speed was also increased. 13/10 for Charley 1 This is Lenox. She's in a wheelbarrow. Silly doggo. You don't belong there. 10/10 would push around https://t.co/oYbVR4nBsR 1 Here we are witnessing a very excited dog. Clearly has no control over neck movements. 8/10 would still pet https://t.co/ICNIjSkrXs 1 Guys... I said DOGS with "shark qualities" or "costumes." Not actual sharks. This did me a real frighten ...11/10 https://t.co/DX1JUHJVN7 1 Meet Larry. He's a Panoramic Benzoate. Can shoot lasers out of his eyes. Very neat. Stuck in that position tho. 8/10 https://t.co/MAZx8MPF0S 1 This is Hero. He was enjoying the car ride until he remembered that bees are dying globally at an alarming rate. 11/10 https://t.co/cubFg7F4qQ 1 Super rare dog here. Spiffy mohawk. Sharp mouth. Shits eggs. Cool chariot wheel in background. 6/10 v confident pup https://t.co/pcx8jm1J1K 1 This is Willow. She's the official strawberry taste tester. Palate delicate af. Currently noting the subtle piquancy of this one. 13/10 https://t.co/On7muWnWSQ 1 This is Louis. He's a rollercoaster of emotions. Incalculably fluffy. 12/10 would pet firmly https://t.co/17RGvOZO9P 1 This is Marvin. He can tie a bow tie better than me. 11/10 https://t.co/81kzPgqjQ3 1 Meet Penelope. She's a bacon frise. Total babe (lol get it like the movie). Doesn't bark tho. 5/10 very average dog https://t.co/SDcQYg0HSZ 1 Say hello to Peaches. She's a Dingleberry Zanderfloof. 13/10 would caress lots https://t.co/YrhkrTsoTt 1 This is Kody. He's a baller. Wishes he was a little bit taller. Double dribbles often. Still 12/10 would happily get dunked on https://t.co/PKSpmiefwN 1 This is Cora. She rings a bell for treats. 12/10 precious af (vid by @skyehellenkamp) https://t.co/uUncaAGH18 1 This is Reese and Twips. Reese protects Twips. Both think they're too good for seat belts. Simply reckless. 7/10s https://t.co/uLzRi1drVK 1 "Honestly Kathleen I just want more Ken Bone" 12/10 https://t.co/HmlEvAMP4r 1 @dhmontgomery We also gave snoop dogg a 420/10 but I think that predated your research 1 This is Bentley. He got stuck on his 3rd homework problem. Picturing the best case scenario if he drops out. 10/10 https://t.co/7rS33sCKMS 1 This is Klevin. He doesn't want his family brainwashed by mainstream media. 10/10 (vid by @AshtonHose) https://t.co/ghhbMAFPW8 1 Meet Sojourner. His nose is a Fibonacci Spiral. Legendary af. 13/10 we must protect him at all costs https://t.co/r7W1NbkOtr 1 This is Jerry. He's a Timbuk Slytherin. Eats his pizza from the side first. Crushed that cup with his bare paws 9/10 https://t.co/fvxHL6cRRs 1 Say hello to Maddie and Gunner. They are considerably pupset about bath time. Both 12/10 but Gunner needs your help\n\nhttps://t.co/JesYTzb1Jo https://t.co/5cncH08G1o 1 RT @dog_rates: This is Betty. She's assisting with the dishes. Such a good puppo. 12/10 h*ckin helpful af https://t.co/dgvTPZ9tgI 1 This is Hubertson. He's a Carmel Haberdashery. Enjoys long summer days on his boat. Very peaceful pupper. 10/10 https://t.co/vzCl35fKlZ 1 Say hello to Rorie. She's zen af. Just enjoying a treat in the sunlight. 10/10 would immediately trade lives with https://t.co/yctnFptdQ1 1 This is Maximus. He's training for the tetherball world championship. The grind never stops. 11/10 (vid by @Amuly21) https://t.co/VmFfWMjNkp 1 This is Bentley. Hairbrushes are his favorite thing in the h*ckin world. 12/10 impawsible to say no to https://t.co/HDloTYilWZ 1 This is Waffles. He's concerned that the dandruff shampoo he just bought is faulty. 11/10 tragic af https://t.co/BCB87qUU0h 1 Everybody needs to read this. Jack is our first 14/10. Truly heroic pupper https://t.co/3m6bNGXWnM 1 This is Deacon. He's the happiest almost dry doggo I've ever seen. 11/10 would smile back https://t.co/C6fUMnHt1H 1 RT @AaronChewning: First time wearing my @dog_rates hat on a flight and I get DOUBLE OPEN ROWS. Really makes you think. 13/10 https://t.co/… 1 This is just impressive I have nothing else to say. 11/10 https://t.co/LquQZiZjJP 1 When bae says they can't go out but you see them with someone else that same night. 5/10 & 10/10 for heartbroken pup https://t.co/aenk0KpoWM 1 This is Oliver. You're witnessing one of his many brutal attacks. Seems to be playing with his victim. 13/10 fr*ckin frightening #BarkWeek https://t.co/WpHvrQedPb 1 This is Bell. She likes holding hands. 12/10 would definitely pet with other hand https://t.co/BXIuvkQO9b 1 There's a lot going on here but in my honest opinion every dog pictured is pretty fabulous. 10/10 for all. Good dogs https://t.co/VvYVbsi6c3 1 This is Sarge. Not even he knows what his tongue is doing, but it's pretty damn spectacular. 10/10 https://t.co/pIQEdbBxdL 1 This is the best thing I've ever seen so spread it like wildfire & maybe we'll find the genius who created it. 13/10 https://t.co/q6RsuOVYwU 1 This is Dixie. She wants to be a ship captain. Won't let anything get in between her and her dreams. 11/10 https://t.co/8VEDZKHddR 1 Meet Godi. He's an avid beachgoer and part time rainbow summoner. Eyeliner flawless af. 13/10 would snug well https://t.co/BO936YdJdi 1 This is Theodore. He just saw an adult wearing crocs. Did him a frighten. Lost other ear back in nam. 12/10 hero af https://t.co/O4iw9NlLaQ 1 This is Bentley. He gives kisses back. 11/10 precious af (vid by @emmaallen25) https://t.co/9PnKkKzoUp 1 This is Kona. Yesterday she stopped by the department to see what it takes to be a police pupper. 12/10 vest was only a smidge too big https://t.co/j8D3PQJvpJ 1 This is Flash. He went way too hard celebrating Martin Luther King Day last night. 12/10 now he's having a dream in his honor https://t.co/bryVdNaRcu 1 This is Albert AKA King Banana Peel. He's a kind ruler of the kitchen. Very jubilant pupper. 10/10 overall great dog https://t.co/PN8hxgZ9We 1 This is Ginger. She's having a ruff Monday. Too many pupper things going on. H*ckin exhausting. 12/10 would snug passionately https://t.co/j211oCDRs6 1 This is Brody. He's a lifeguard. Always prepared for rescue. 12/10 would fake drown just to get saved by him https://t.co/olDmwNjOy1 1 Exotic underwater dog here. Very shy. Wont return tennis balls I toss him. Never been petted. 5/10 I bet he's soft https://t.co/WH7Nzc5IBA 1 This is Mookie. He really enjoys shopping but not from such high altitudes. Doin him quite the concern. 12/10 someone lower him https://t.co/beWUzGVKRM 1 This is Bubba. He's a Titted Peebles Aorta. Evolutionary masterpiece. Comfortable with his body. 8/10 great pupper https://t.co/aNkkl5nH3W 1 This is Wiggles. She would like you to spot her. Probably won't need your help but just in case. 13/10 powerful as h*ck https://t.co/2d370P0OEg 1 This is Obie. He is on guard watching for evildoers from the comfort of his pumpkin. Very brave pupper. 11/10 https://t.co/cdwPTsGEAb 1 This is Cheryl AKA Queen Pupper of the Skies. Experienced fighter pilot. Much skill. True hero. 11/10 https://t.co/i4XJEWwdsp 1 Here's a couple rufferees making sure all the sports are played fairly today. Both 10/10 would bribe with extra pets https://t.co/H9yjI9eo3A 1 Meet Clifford. He's quite large. Also red. Good w kids. Somehow never steps on them. Massive poops very inconvenient. Still 14/10 would ride https://t.co/apVOyDgOju 1 This is by far the most coordinated series of pictures I was sent. Downright impressive in every way. 12/10 for all https://t.co/etzLo3sdZE 1 RT @dog_rates: This is Rory. He's got an interview in a few minutes. Looking spiffy af. Nervous as h*ck tho. 12/10 would hire https://t.co/… 1 This is Buddy. He's testing out the water. Such caution. Much reserve. 12/10 https://t.co/FQZGSQIQLS 1 This is Oshie. 12/10 please enjoy (vid by @catherinec1389) https://t.co/VmtzwAuotq 1 Meet Griswold. He's dapper as hell. Already pumped for next Christmas. 11/10 https://t.co/5NrpNDyFzN 1 This is Ruby. She just turned on the news. Officially terrified. 11/10 deep breaths Ruby https://t.co/y5KarNXWXt 1 This is Neptune. He's a backpup vocalist for the Dixie Chicks. 13/10 (vid by @AmiWinehouse) https://t.co/tordvmaaop 1 This is Aldrick. He looks wise af. Also exceptionally fluffy. Only two legs tho (unfortunate). 11/10 would still hug https://t.co/QwiCVLPMNL 1 When your roommate eats your leftover Chili's but you pretend it's no big deal cuz you fat anyway. 10/10 head up pup https://t.co/0nMgoue8IR 1 RT @dog_rates: This is Emmy. She was adopted today. Massive round of pupplause for Emmy and her new family. 14/10 for all involved https://… 1 Here's a pupper with squeaky hiccups. Please enjoy. 13/10 https://t.co/MiMKtsLN6k 1 This is Charlie. He wants to know if you have a moment to talk about washing machine insurance policies. 11/10 would hear him out https://t.co/gAzPqT7uyk 1 This is Ronnie. He hopes you're having a great day. Nifty tongue slip. 12/10 would pat head approvingly https://t.co/4fY2bsAm65 1 This is Tucker. He's out here bustin h*ckin ghosts. 13/10 dedicated af https://t.co/Ap477GhwXt 1 This is Phil. He's an important dog. Can control the seasons. Magical as hell. 12/10 would let him sign my forehead https://t.co/9mb0P2rjk2 1 Meet Pubert. He's a Kerplunk Rumplestilt. Cannot comprehend flower. Flawless tongue. 8/10 would pat head approvingly https://t.co/2TWxg0rgyG 1 Here's a pupper with some mean tan lines. Snazzy sweater though 12/10 https://t.co/DpCSVsl6vu 1 When you have a ton of work to do but then remember you have tomorrow off. 10/10 https://t.co/MfEaMUFYTx 1 This is Donny. He's summoning the demon monster Babadook. 6/10 Donny please no that won't be a good time for anyone https://t.co/kiW6Knb7Gp 1 RT @dog_rates: This is Leela. She's a Fetty Woof. Lost eye while saving a baby from an avalanche. 11/10 true h*ckin hero https://t.co/2lBg3… 1 Duuun dun... duuun dun... dunn dun. dunn dun. dun dun dun dun dun dun dun dun dun dun dun dun dun dun dun. 10/10 https://t.co/9qdJ2Q1Cwx 1 This is Philippe from Soviet Russia. Commanding leader. Misplaced other boot. Hung flag himself. 9/10 charismatic af https://t.co/5NhPV8E45i 1 This is Kramer. He's a Picasso Tortellini. Tie couldn't be more accurate. Confident af. Runs his own business. 10/10 https://t.co/jIcVW0xxmH 1 This is Bailey. She has mastered the head tilt. 11/10 rather h*ckin adorable https://t.co/urhl90ZE1O 1 RT @dog_rates: Idk why this keeps happening. We only rate dogs. Not Bangladeshi Couch Chipmunks. Please only send dogs... 12/10 https://t.c… 1 This is Obi. He got camera shy. 12/10 https://t.co/feiPiq7z94 1 This is Koda. He is a South Australian deckshark. Deceptively deadly. Frighteningly majestic. 13/10 would risk a petting #BarkWeek https://t.co/dVPW0B0Mme 1 Meet Bailey. She plays with her food. Very childish. Doesn't even need a battle helmet smh. Still cute though. 9/10 https://t.co/CLEOjxhTEx 1 This poor pupper has been stuck in a vortex since last week. Please keep her in your thoughts. 10/10 https://t.co/7ODQWHwYDx 1 RT @dog_rates: Extremely intelligent dog here. Has learned to walk like human. Even has his own dog. Very impressive 10/10 https://t.co/0Dv… 1 This is Eriq. His friend just reminded him of last year's super bowl. Not cool friend\n10/10 for Eriq\n6/10 for friend https://t.co/PlEXTofdpf 1 This is Trigger. He was minding his own business on stair when he overheard someone say they don't like bacon. 11/10 https://t.co/yqohZK4CL0 1 This is Mya (pronounced "mmmyah?"). Her head is round af. 11/10 would pat accordingly https://t.co/1dpEuALnY0 1 Say hello to Divine Doggo. Must be magical af. 13/10 would be an honor to pet https://t.co/BbcABzohKb 1 There's going to be a dog terminal at JFK Airport. This is not a drill. 10/10 \nhttps://t.co/dp5h9bCwU7 1 Wow. Armored dog here. Ready for battle. Face looks dangerous. Not very loyal. Lil dog on back havin a blast. 5/10 https://t.co/SyMoWrp368 1 Meet Fabio. He's a wonderful pup. Can't stay away from the devil's lettuce but other than that he's a delight. 10/10 https://t.co/Qvj4JZGdQD 1 I've yet to rate a Venezuelan Hover Wiener. This is such an honor. 14/10 paw-inspiring af (IG: roxy.thedoxy) https://t.co/20VrLAA8ba 1 This pupper forgot how to walk. 12/10 happens to all of us (vid by @bbuckley96) https://t.co/KFTrkSOuu3 1 This is Jeffrey. He has a monopoly on the pool noodles. Currently running a 'boop for two' midweek sale. 13/10 h*ckin strategic https://t.co/PhrUk20Q64 1 This is Lucy. She has a portrait of herself on her ear. Excellent for identification pupposes. 13/10 innovative af https://t.co/uNmxbL2lns 1 This is Bella. She's ubering home after a few too many drinks. 10/10 socially conscious af https://t.co/KxkOgq80Xj 1 This is Steven. He has trouble relating to other dogs. Quite shy. Neck longer than average. Tropical probably. 11/10 would still pet https://t.co/2mJCDEJWdD 1 For anyone who's wondering, this is what happens after a doggo catches it's tail... 11/10 https://t.co/G4fNhzelDv 1 Meet Eve. She's a raging alcoholic 8/10 (would b 11/10 but pupper alcoholism is a tragic issue that I can't condone) https://t.co/U36HYQIijg 1 This is Kevon. He is not physically or mentally prepared to start his Monday. 10/10 totes relatable https://t.co/YVAJgWHzPW 1 This is Mutt Ryan. He's quite confident at the moment. 12/10 rise pup! https://t.co/ZH5CvRlCxt 1 This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f 1 This is Koda. He dug a hole and then sat in it because why not. Unamused by the bath that followed. 12/10 https://t.co/SQhyqrr8px 1 This is Harnold. He accidentally opened the front facing camera. 10/10 get it together Harnold https://t.co/S6JHaSMtln 1 This is Shadoe. Her tongue flies out of her mouth at random. Can't have a serious conversation with her. 9/10 https://t.co/Tytt15VquG 1 This is Lenny. He wants to be a sprinkler. 10/10 you got this Lenny https://t.co/CZ0YaB40Hn 1 This is Nida. She's a free elf. Waited so long for this day. 11/10 https://t.co/3lE8Izgmkf 1 @imgur for a polar bear tho I'd say 13/10 is appropriate 1 This is Cecil. She's a Gigglefloof Poofer. Outdoorsy af. One with nature. 12/10 would strategically capture https://t.co/ijJB0DuOIC 1 This is Colin. He really likes green beans. It's tearing his family apart. 10/10 please pray for Colin https://t.co/ioFy0cmK03 1 We only rate dogs. Pls stop sending in non-canines like this Urban Floof Giraffe. I can't handle this. 11/10 https://t.co/zHIqpM5Gni 1 RT @dog_rates: This is Shaggy. He knows exactly how to solve the puzzle but can't talk. All he wants to do is help. 10/10 great guy https:/… 1 Meet Patrick. He's an exotic pup. Jumps great distances for a dog. Always gets injured when I toss him a ball. 3/10 https://t.co/Unz1uNrOzo 1 This is Cassie. She steals things. Guilt increases slightly each time. 12/10 would forgive almost immediately https://t.co/Ia19irLwyB 1 This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ 1 This is actually a pupper and I'd pet it so well. 12/10\nhttps://t.co/RNqS7C4Y4N 1 This is Sadie. She got her holidays confused. 9/10 damn it Sadie https://t.co/fm7HxOsuPK 1 Meet Fizz. She thinks love is a social construct consisting solely of ideals perpetuated by mass media 11/10 woke af https://t.co/sPB5JMnWBn 1 Not familiar with this breed. No tail (weird). Only 2 legs. Doesn't bark. Surprisingly quick. Shits eggs. 1/10 https://t.co/Asgdc6kuLX 1 Say hello to Alice. I'm told she enjoys car rides and smells good. 12/10 would give her everything she could ever want https://t.co/yT4vw8y77x 1 This is Fiona. She's an extremely mediocre copilot. Very distracting. Wink makes up for all the missed turns. 12/10 https://t.co/aF5MmpvPqN 1 This is Bruce. He's a rare pup. Covered in Frosted Flakes. Nifty gold teeth. Overall good dog. 7/10 would pet firmly https://t.co/RtxxACzZ8A 1 Downright inspiring 12/10 https://t.co/vSLtYBWHcQ 1 This is Stormy. He's curly af. Already pupared for Coachella next year. 12/10 https://t.co/PHA1vtqqpt 1 RT @dog_rates: Here we see a rare pouched pupper. Ample storage space. Looks alert. Jumps at random. Kicked open that door. 8/10 https://t.… 1 Meet Solomon. He was arrested for possession of adorable and attempted extra pats on the head. 12/10 would post bail https://t.co/nFqLaOLUQA 1 This is Finley. He's an independent doggo still adjusting to life on his own. 11/10 https://t.co/7FNcBaKbci 1 This is Kanu. He's a Freckled Ticonderoga. Simply flawless. 12/10 would perform an elaborate heist to capture https://t.co/7vyAzIURrE 1 Some happy pupper news to share. 10/10 for everyone involved \nhttps://t.co/MefMAZX2uv 1 So this just changed my life. 13/10 please enjoy https://t.co/dsv4xAtfv7 1 What hooligan sent in pictures w/out a dog in them? Churlish af. 3/10 just bc that's a neat fluffy bean bag chair https://t.co/wcwoGOkZvz 1 Personally I'd give him an 11/10. Not sure why you think you're qualified to rate such a stellar pup.\n@CommonWhiteGirI 1 Meet Zuzu. He just graduated college. Astute pupper. Needs 2 leashes to contain him. Wasn't ready for the pic. 10/10 https://t.co/2H5SKmk0k7 1 "Yep... just as I suspected. You're not flossing." 12/10 and 11/10 for the pup not flossing https://t.co/SuXcI9B7pQ 1 Take all my money. 10/10 https://t.co/B28ebc5LzQ 1 This is Chubbs. He dug a hole and now he's stuck in it. Dang h*ckin doggo. 11/10 would assist https://t.co/z1VRj1cYZf 1 This is Jackson. There's nothing abnormal about him. Just your average really good dog. 10/10 https://t.co/3fEPpj0KYw 1 This is Chompsky. He lives up to his name. 11/10 https://t.co/Xl37lQEWd0 1 *takes several long deep breaths* omg omg oMG OMG OMG OMGSJYBSNDUYWJO 12/10 https://t.co/QCugm5ydl6 1 This is Tommy. He's a cool dog. Hard not to step on. Won't let go of seashell. Not fast by any means. 3/10 https://t.co/0gY6XTOpn3 1 This is Chet. He's having a hard time. Really struggling. 7/10 hang in there pupper https://t.co/eb4ta0xtnd 1 This is Beau. He's trying to keep his daddy from packing to leave for Annual Training. 13/10 and now I'm crying https://t.co/7JeDfQvzzI 1 These are strange dogs. All have toupees. Long neck for dogs. In a shed of sorts? Work in groups? 4/10 still petable https://t.co/PZxSarAfSN 1 Say hello to Oliver. He thought what was inside the pillow should be outside the pillow. Blurry since birth. 8/10 https://t.co/lFU9W31Fg9 1 THE BRITISH ARE COMING\nTHE BRITISH ARE COMING\n10/10 https://t.co/frGWV7IP6J 1 RT @dog_rates: This is Chelsea. She forgot how to dog. 11/10 get it together pupper https://t.co/nBJ5RE4yHb 1 Say hello to Petrick. He's an Altostratus Floofer. Just had a run in with a trash bag. Groovy checkered floor. 11/10 https://t.co/rwW7z1JAOF 1 This is Percy. He fell asleep at the wheel. Irresponsible af. 7/10 absolute menace on the roadway https://t.co/QHbvtvaw8E 1 Say hello to Kenzie. She is a fluff ball. 12/10 you'd need to taser me for me to let go of her https://t.co/dph1UHNJrg 1 #BarkWeek is getting rather heckin terrifying over here. Doin me quite the spooken. 13/10 (vid by @corgi_zero) https://t.co/eA7k1ZQslA 1 This is Jebberson. He's the reigning hide and seek world champion. 10/10 hasn't lost his touch https://t.co/VEFkvWCoHF 1 This is Ken. His cheeks are magic. 13/10 (IG: ken_shiba) https://t.co/btzf1zTDeQ 1 This is Ole. He's not sure how to gravity. 8/10 https://t.co/PsqqotpBBQ 1 Extremely rare pup here. Very religious. Always praying. Too many legs. Not overwhelmingly fluffy. Won't bark. 3/10 https://t.co/REyE5YKVBb 1 This is Asher. He's not wearing a seatbelt or keeping both paws on the wheel. Absolute menace on the roadways. 9/10 https://t.co/V3SWuHACkh 1 "Martha come take a look at this. I'm so fed up with the media's unrealistic portrayal of dogs these days." 10/10 https://t.co/Sd4qAdSRqI 1 This is Zeke the Wonder Dog. He never let that poor man keep his frisbees. One of the Spartans all time greatest receivers. 13/10 RIP Zeke https://t.co/zacX7S6GyJ 1 This sherk must've leapt out of the water and into the canoe, trapping the human. Won't even help paddle smh. 7/10 https://t.co/KubWEqOIgO 1 This is Jeremy. He hasn't grown into his skin yet. Ears hit the floor. Probably trips on them sometimes. 11/10 https://t.co/LqAMlFVBoY 1 RT @dog_rates: This is Scout. He really wants to kiss himself. H*ckin inappropriate. 11/10 narcissistic af https://t.co/x0gV2Ck3AD 1 This is life-changing. 12/10 https://t.co/SroTpI6psB 1 This is Livvie. Someone should tell her it's been 47 years since Woodstock. Magical eyes tho 11/10 would stare into https://t.co/qw07vhVHuO 1 Here's a doggo fully pupared for a shower. H*ckin exquisite balance. Sneaky tongue slip too. 13/10 https://t.co/UtEVnQ1ZPg 1 After some outrage from the crowd. Bubbles is being upgraded to a 7/10. That's as high as I'm going. Thank you 1 Meet Winston. He knows he's a little too big for the swing, but he doesn't care. Kindly requests a push. 12/10 would happily oblige https://t.co/GuxEXTdnMu 1 This is Oliver. Bath time is upon him. His fear of the wetness postpones his ultimate pupper destiny. 11/10 https://t.co/AFzzKqR4tT 1 This is Fred-Rick. He dabbles in parkour. The elevation gives him power. 12/10 hopefully visiting a mailbox near you https://t.co/qFqLtudIiD 1 RT @dog_rates: This is Milo. I would do terrible things for Milo. 13/10 https://t.co/R6wJyC2Tey 1 This is Vincent. He's the man your girl is with when she's not with you. 10/10 https://t.co/JQGMP7kzjD 1 Meet Thor. He doesn't have finals because he's a dog but is pupset you have finals. Just wants to play. 13/10 would abandon education for https://t.co/7IFn3rkJai 1 Meet Brandy. She's a member of the Bloods. Menacing criminal pupper. Soft spot for flowers tho. 9/10 pet w caution https://t.co/hhIA3coiAJ 1 This is Kyle. He's a heavy drinker and an avid pot user. Just wants to be pupular. 6/10 I can't support this Kyle https://t.co/rRULp7XFnO 1 Meet Beau & Wilbur. Wilbur stole Beau's bed from him. Wilbur now has so much room for activities. 9/10 for both pups https://t.co/GPaoH5qWEk 1 We've got ourselves a battle here. Watch out Reggie. 11/10 https://t.co/ALJvbtcwf0 1 RT @dog_rates: This is Buddy. His father was a bear and his mother was a perfectly toasted marshmallow. 12/10 would snug so well https://t.… 1 This is Arnold. He broke his leg saving a handicapped child from a forest fire. True hero. 10/10 inspirational dog https://t.co/bijCeHeX4C 1 This is Sammy. He's in a tree. Very excited about it. 13/10 https://t.co/CLe9ETEjeF 1 Three generations of pupper. 11/10 for all https://t.co/tAmQYvzrau 1 Meet Brian (pronounced "Kirk"). He's not amused by ur churlish tomfoolery. Once u put him down you're done for. 6/10 https://t.co/vityMwPKKi 1 This is Oliver (pronounced "Ricardo"). He's a ship captain. Controls these treacherous waters. 11/10 would sail with https://t.co/bxjO45rXKd 1 Again w the sharks guys. This week is about dogs ACTING or DRESSING like sharks. NOT actual sharks. Thank u ...11/10 https://t.co/Ie2mWXWjpr 1 This is Charlie. He fell asleep on a heating vent. Would puppreciate your assistance. 11/10 someone help Charlie https://t.co/Dhdx5HnQ4d 1 This is Tucker. He's still figuring out couches. 9/10 keep your head up pup https://t.co/pXU77HPbJ5 1 RT @dogratingrating: Exceptional talent. Original humor. Cutting edge, Nova Scotian comedian. 12/10 https://t.co/uarnTjBeVA 1 Say hello to Levi. He's a Madagascan Butterbop. One of the more docile Butterbops I've seen. 12/10 would give all the pets https://t.co/Zcw9Sccctc 1 Two unbelievably athletic dogs here. Great form. Perfect execution. 10/10 for both https://t.co/sQuKwSKtDE 1 Here's a sleepy Christmas pupper 11/10 https://t.co/KXg0f8GNQ9 1 This is Darrel. He just robbed a 7/11 and is in a high speed police chase. Was just spotted by the helicopter 10/10 https://t.co/7EsP8LmSp5 1 Seriously, add us 🐶 11/10 for sad wet pupper https://t.co/xwPE9faVZR 1 DOGGO ON THE LOOSE I REPEAT DOGGO ON THE LOOSE 10/10 https://t.co/ffIH2WxwF0 1 oh h*ck 10/10 https://t.co/bC69RrW559 1 Meet Rufio. He is unaware of the pink legless pupper wrapped around him. Might want to get that checked 10/10 & 4/10 https://t.co/KNfLnYPmYh 1 RT @dog_rates: Say hello to Pablo. He's one gorgeous puppo. A true 12/10. Click the link to see why Pablo requests your assistance\n\nhttps:/… 1 When you just can't resist... 10/10 topnotch tongue https://t.co/jeWEGUgbXf 1 Never seen this breed before. Very pointy pup. Hurts when you cuddle. Still cute tho. 10/10 https://t.co/97HuBrVuOx 1 This is Rory. He's got an interview in a few minutes. Looking spiffy af. Nervous as h*ck tho. 12/10 would hire https://t.co/ibj5g6xaAj 1 This is Penny. She's an OU cheerleader. About to do a triple back handspring down the stairs. 11/10 hype af https://t.co/B2f3XkGU5c 1 Another pic without a dog in it? What am I supposed to do? Rate the carpet? Fine I will. 7/10 looks adequately comfy https://t.co/OJZQ6I4gGd 1 This is Rubio. He has too much skin. 11/10 https://t.co/NLOHmlENag 1 Oh my god it's Narcos but Barkos. 13/10 someone please make this happen\nhttps://t.co/tird9cIlzB 1 RT @dog_rates: This is Meyer. He has to hold somebody's hand during car rides. He's also wearing a seatbelt. 12/10 responsible af https://t… 1 Here is a mother dog caring for her pups. Snazzy red mohawk. Doesn't wag tail. Pups look confused. Overall 4/10 https://t.co/YOHe6lf09m 1 This is Dido. She's playing the lead role in "Pupper Stops to Catch Snow Before Resuming Shadow Box with Dried Apple." 13/10 (IG: didodoggo) https://t.co/m7isZrOBX7 1 I didn't even have to intervene. Took him 4 minutes to realize his error. 10/10 for Kevin https://t.co/2gclc1MNr7 1 This is Tug. He's not required to wear the cone he just wants his voice to project more clearly. 11/10 https://t.co/Sp739Ou2qx 1 This is Yoda. He's a Zimbabwean Rutabaga. Freaks out if u stop scratching his belly. Incredibly self-centered. 9/10 https://t.co/yVdMsVYHIx 1 This is Bailey. She's rather h*ckin hype for Halloween tomorrow. Carved those pupkins herself. 12/10 https://t.co/v17mFm0Ftz 1 This is Louis. He's crossing. It's a big deal. 13/10 h*ckin breathtaking https://t.co/D0wb1GlKAt 1 RT @dog_rates: Say hello to Cooper. His expression is the same wet or dry. Absolute 12/10 but Coop desperately requests your help\n\nhttps://… 1 This is Lili. She can't believe you betrayed her with bath time. Never looking you in the eye again. 12/10 would puppologize profusely https://t.co/9b9J46E86Z 1 I can't do better than he did. 10/10 https://t.co/fM0KXns7Or 1 Extraordinary dog here. Looks large. Just a head. No body. Rather intrusive. 5/10 would still pet https://t.co/ufHWUFA9Pu 1 This is Molly. She's a Peruvian Niddlewog. Loves her new hat. 11/10 would totally pet https://t.co/g4fiS8A9Ab 1 This is Gizmo. His favorite thing is standing pupright like a hooman. Sneaky tongue slip status achieved. 13/10 would boop well https://t.co/IoR3n1fiiQ 1 Meet Miley. She's a Scandinavian Hollabackgirl. Incalculably fluffy, unamused af. 11/10 would squeeze aggressively https://t.co/6r4GFZY5WS 1 RT @Athletics: 12/10 #BATP https://t.co/WxwJmvjfxo 1 This is Poppy. She just arrived. 13/10 would snug passionately https://t.co/YGeSpyN8Gu 1 Meet Vinnie. He's having fun while being safe. Well not a lot of fun, but definitely safe, and that's important 8/10 https://t.co/vZYtynZZlH 1 #ImWithThor 13/10\nhttps://t.co/a18mzkhTf6 1 This is Clyde. He's making sure you're having a good train ride. 12/10 great pupper https://t.co/y206kWHAj0 1 This is Shelby. She finds stuff to put on her head for attention. It works really well. 12/10 talented af https://t.co/WTZ484EntP 1 After 22 minutes of careful deliberation this dog is being demoted to a 1/10. The longer you look at him the more terrifying he becomes 1 Meet Sunny. He can take down a polar bear in one fell swoop. Fr*cken deadly af. 13/10 would pet with caution https://t.co/EMq8Ud6Ze1 1 This is Luna. She's just heckin precious af I have nothing else to say. 12/10 https://t.co/gQH2mmKIJW 1 Meet Elliot. He's a Canadian Forrest Pup. Unusual number of antlers for a dog. Sneaky tongue slip to celebrate #Canada150. 12/10 would pet https://t.co/cgwJwowTMC 1 Who leaves the last cupcake just sitting there? 9/10 https://t.co/PWMqAoEx2a 1 This is Claude. He's trying to be seductive but he forgot to turn on the fireplace. 9/10 damn it Claude https://t.co/EPdQquc1dG 1 This is Oddie. He's trying to communicate. 12/10 very solid effort (vid by @kaleseyy) https://t.co/JjxriLqZOL 1 I want to finally rate this iconic puppo who thinks the parade is all for him. 13/10 would absolutely attend https://t.co/5dUYOu4b8d 1 This is Larry. He thought the New Year's parties were tonight. 10/10 poor pupper. Maybe next year https://t.co/h3X0jK8MVM 1 This is Hermione. Her face is as old as time. Appears fluffy af tho. 11/10 pretty damn majestic https://t.co/0b41Q4DKCA 1 Just in case anyone's having a bad day. 12/10 would bounce with https://t.co/T9sgP9ttnQ 1 Meet Winston. He wants to be a power drill. Very focused. 10/10 I believe in you Winston https://t.co/exGrzT9O88 1 This is Pavlov. His floatation device has failed him. He's quite pupset about it. 11/10 would rescue https://t.co/MXd0AGDsRJ 1 This is Tanner. He accidentally dropped all his hard-earned Kohl's cash in the tub. 11/10 https://t.co/onC3uMpFF2 1 Meet Jack. He's one of the rare doggos that doesn't mind baths. 11/10 click the link to see how you can help Jack!\n\nhttps://t.co/r4W111FzAq https://t.co/fQpYuMKG3p 1 Meet Sansa and Gary. They run along the fence together everyday, so the owners installed a window for them. Both 12/10 h*ckin romantic af https://t.co/1JUduNuaWl 1 Some clarification is required. The dog is singing Cher and that is more than worthy of an 11/10. Thank you 1 This is Charlie. He works for @TODAYshow. Super sneaky tongue slip here. 12/10 would pet until someone made me stop https://t.co/K5Jo7QRCvA 1 Hope your Monday isn't too awful. Here's two baseball puppers. 11/10 for each https://t.co/dB0H9hdZai 1 Meet Kollin. He's a Parakeetian Badminton from Denmark. Great artist. Taking break from research. Loves wicker 9/10 https://t.co/XPLB3eoXiX 1 This is Rocky. He sleeps like a psychopath. 10/10 quality tongue slip https://t.co/MbgG95mUdu 1 This is Duchess. She uses dark doggo forces to levitate her toys. 13/10 magical af https://t.co/maDNMETA52 1 This is a Lofted Aphrodisiac Terrier named Kip. Big fan of bed n breakfasts. Fits perfectly. 10/10 would pet firmly https://t.co/gKlLpNzIl3 1 Like doggo, like pupper version 2. Both 11/10 https://t.co/9IxWAXFqze 1 I know everyone's excited for Christmas but that doesn't mean you can send in reindeer. We only rate dogs... 8/10 https://t.co/eWjWgbOCYL 1 This is Oscar. He's getting bombarded with the snacks. Not sure he's happy about it. 8/10 for Oscar https://t.co/dJHI7uC2y3 1 This is Pickles. She's a silly pupper. Thinks she's a dish. 12/10 would dry https://t.co/7mPCF4ZwEk 1 This is Reese. He likes holding hands. 12/10 https://t.co/cbLroGCbmh 1 This is Dave. He's currently in a predicament. Doesn't seem to mind tho. 12/10 someone assist Dave https://t.co/nfprKAXqwu 1 This is Curtis. He's a fluffball. 11/10 would snug this pupper https://t.co/1DzInODwrj 1 Viewer discretion is advised. This is a terrible attack in progress. Not even in water (tragic af). 4/10 bad sherk https://t.co/L3U0j14N5R 1 This is Remy. He has some long ass ears (probably magical). Also very proud of broken stick. 10/10 such a good boy https://t.co/EZx0YjPjPK 1 This is Sundance. He's a doggo drummer. Even sings a bit on the side. 14/10 entertained af (vid by @sweetsundance) https://t.co/Xn5AQtiqzG 1 This is Staniel. His selfie game is strong af. 10/10 I'd snapchat with Staniel https://t.co/UgkTw7TKyM 1 When the photographer forgets to tell you where to look... 10/10 https://t.co/u1GHWxhC85 1 RT @dog_rates: Here's a heartwarming scene of a single father raising his two pups. Downright awe-inspiring af. 12/10 for everyone https://… 1 This is a carrot. We only rate dogs. Please only send in dogs. You all really should know this by now ...11/10 https://t.co/9e48aPrBm2 1 This is Brody. That is his chair. He loves his chair. Never leaves it. 9/10 might be stuck actually https://t.co/WvJRg0XJit 1 This is Gus. He's quite the cheeky pupper. Already perfected the disinterested wink. 12/10 would let steal my girl https://t.co/D43I96SlVu 1 Say hello to Pablo. He's one gorgeous puppo. A true 12/10. Click the link to see why Pablo requests your assistance\n\nhttps://t.co/koHvVQp9bL https://t.co/IhW0JKf7kc 1 Here is a pupper approaching maximum borkdrive. Zooming at never before seen speeds. 14/10 paw-inspiring af \n(IG: puffie_the_chow) https://t.co/ghXBIIeQZF 1 Here's a pupper licking in slow motion. 12/10 please enjoy https://t.co/AUJi8ujxw9 1 This is Tucker. He's a Dasani Episcopalian. Good lord what a tongue. 12/10 would never let go of https://t.co/gHtW5cgyy7 1 This is a rare Hungarian Pinot named Jessiga. She is either mid-stroke or got stuck in the washing machine. 8/10 https://t.co/ZU0i0KJyqD 1 This is Jameson. He had a few too many in the name of freedom. I can't not respect that. 11/10 'Merica https://t.co/8zQvXM6pG5 1 Meet Jack. He's a Clemson pup. Appears to be rather h*ckin pettable. Almost makes me want to root for Clemson. 12/10 https://t.co/GHOfbTVQti 1 Another magnificent photo. 12/10 https://t.co/X5w387K5jr 1 This is Ito. He'll be your uber driver tonight. Currently adjusting the mirrors. 13/10 incredibly h*ckin responsible https://t.co/Zrrcw29o13 1 Meet Sophie. Her son just got in the car to leave for college. Very touching. Perfect dramatic sunlight. 10/10 yaass https://t.co/3j9kZRcpVB 1 This is Chipson. He weighed in at .3 ounces and is officially super h*ckin smol. Space-saving af. 11/10 would snug delicately https://t.co/FjEsk7A1JV 1 When your entire life is crumbling before you and you're trying really hard to hold your shit together.\n10/10 https://t.co/vqFkgYPCW8 1 Say hello to Hammond. He's just a wee lil pup. Jumps around a shit ton. 8/10 overall very good dog https://t.co/OgDF2ES3Q9 1 OMG HE DIDN'T MEAN TO HE WAS JUST TRYING A LITTLE BARKOUR HE'S SUPER SORRY 13/10 WOULD FORGIVE IMMEDIATE https://t.co/uF3pQ8Wubj 1 Meet Rufus. He's a Honeysuckle Firefox. Curly af. Badass tie. About to go on his first date ever 11/10 good luck pup https://t.co/dGoTWNfIsm 1 This is Kobe. He's a Speckled Rorschach. Requests that someone holds his hand during car rides. 10/10 sick interior https://t.co/LCA6Fr3X2M 1 RT @dog_rates: Meet Baloo. He's expecting a fast ground ball, hence the wide stance. Prepared af. 11/10 nothing runs like a pupper https://… 1 "Yo Boomer I'm taking a selfie, grab your stick"\n"Ok make sure to get this rad hole I just dug in there"\n\nBoth 10/10 https://t.co/e0gbl9VFpA 1 This is Aspen. She's never tasted a stick so succulent. On the verge of tears. A face of pure appreciation. 12/10 https://t.co/VlyBzOXHEW 1 "Tristan do not speak to me with that kind of tone or I will take away the Xbox." 10/10 https://t.co/VGPH0TfESw 1 RT @dog_rates: This is Mattie. She's extremely dangerous. Will bite your h*ckin finger right off. Still 11/10 would pet with caution https:… 1 This is Lola. She realized mid hug that she's not ready for a committed relationship with a teddy bear. 9/10 https://t.co/pVebzwRioD 1 RT @dog_rates: Not familiar with this breed. No tail (weird). Only 2 legs. Doesn't bark. Surprisingly quick. Shits eggs. 1/10 https://t.co/… 1 This is Nigel. He accidentally popped his ball after dunking so hard the backboard shattered. 10/10 great great pup https://t.co/vSd1TWFK1I 1 This is Derby. He's a superstar. 13/10 (vid by @NBohlmann) https://t.co/o4Nfc8WoAO 1 This is Clarq. He's a golden Quetzalcoatl. Clarq enjoys eating his own foot. Damn it Clarq. 8/10 would pet firmly https://t.co/d8ybynaRwZ 1 Meet Scooter. He's ready for his first day of middle school. Remarkable tongue. 12/10 https://t.co/1DJfHmfBQN 1 THIS WAS NOT HIS FAULT HE HAD NO IDEA. 11/10 STILL A VERY GOOD DOG https://t.co/GJ8rozumsy 1 This is Ziva. She doesn't know how her collar works. 11/10 would totally fix for her https://t.co/K7pthJXjWE 1 This is Amber. She's a Fetty Woof. 10/10 would pet in a heartbeat https://t.co/Dt360V2MYI 1 RT @dog_rates: This is Leo. He was a skater pup. She said see ya later pup. He wasn't good enough for her. 12/10 you're good enough for me… 1 This is Murphy. He's a mini golden retriever. Missing two legs (tragic). Mouth sharp. Looks rather perturbed. 6/10 https://t.co/ALO02IAKCn 1 I hope you guys enjoy this beautiful snowy pupper as much as I did. 11/10 https://t.co/DYUsHtL2aR 1 RT @dog_rates: "Good afternoon class today we're going to learn what makes a good boy so good" 13/10 https://t.co/f1h2Fsalv9 1 I would do radical things in the name of Dog God. I'd believe every word in that book. 10/10 https://t.co/9ZuGAmLZDR 1 Guys.. we only rate dogs. Pls don't send any more pics of the Loch Ness Monster. Only send in dogs. Thank you. 11/10 https://t.co/obH5vMbm1j 1 Meet Saydee. She's a Rochester Ecclesiastical. Jumped off cliff and caught stick on way down. 11/10 1st round pick https://t.co/Eh2v0AyJbi 1 This is Zoe. She was trying to stealthily take a picture of you but you just noticed. 9/10 not so sneaky pupper https://t.co/FfH3o88Vta 1 We only rate dogs. Please don't send in any more non-dogs like this Wild Albanian Street Moose. Thank you... 11/10 https://t.co/srXL2s868C 1 RT @dog_rates: This is Moreton. He's the Good Boy Who Lived. 13/10 magical as h*ck https://t.co/rLHGx3VAF3 1 Meet Crouton. He's a Galapagos Boonwiddle. Has a legendary tongue (most Boonwiddles do). Excellent stuff 10/10 https://t.co/110Eeg7KW3 1 Say hello to Lillie. She's a Rutabagan Floofem. Poor pupper ate and then passed out. 11/10 relatable af https://t.co/uIdGqug9rw 1 This pupper has a magical eye. 11/10 I can't stop looking at it https://t.co/heAGpKTpPW 1 Reminder that we made our first set of stickers available! All are 12/10 would stick\nUse code "pupper" at checkout🐶\n\nhttps://t.co/kJIMNyMNKV 1 This is Akumi. It's his birthday. He received many lickable gifts. 11/10 happy h*ckin birthday https://t.co/gd9UlLOCQ0 1 Guys I found the dog from Up. 12/10 https://t.co/WqoZtX9jmJ 1 This is Mia. She already knows she's a good dog. You don't have to tell her. 12/10 would probably tell her anyway https://t.co/xeudgDXmTU 1 Say hello to Smiley. He's a blind therapy doggo having a h*ckin blast high steppin around in the snow. 14/10 would follow anywhere https://t.co/SHAb1wHjMz 1 Meet Opal. He's a Belgian Dijon Poofster. Upset because his hood makes him look like blond Justin Timberlake. 11/10 https://t.co/IAt3jRZ5ez 1 Say hello to Geoff (pronounced "Kyle"). He accidentally opened the front facing camera. 10/10 https://t.co/TmlwQWnmRC 1 We only rate dogs. Please don't send in any non-canines like this Floppy Tongued House Panda. Thank you... 12/10 would still pet https://t.co/8fX2VkExnL 1 This is Alexanderson. He's got a weird ass birth mark. Dreadful at fetch. Won't eat kibble. 3/10 wtf @Target https://t.co/FmxOpf2Sgl 1 This is a truly beautiful English Wilson Staff retriever. Has a nice phone. Privileged. 10/10 would trade lives with https://t.co/fvIbQfHjIe 1 This is Ed. He's not mad, just disappointed. 10/10 https://t.co/BIljU0zhLN 1 These two dogs are Bo & Smittens. Smittens is trying out a new deodorant and wanted Bo to smell it. 10/10 true pals https://t.co/4pw1QQ6udh 1 This is Koda. She's a boss. Helps shift gears. Can even drive herself. Still no seat belt (reckless af). 11/10 https://t.co/0zUxlrhZrQ 1 This is Crumpet. He underestimated the snow. Quickly retreating. 10/10 https://t.co/a0Zx5LDFZa 1 This is Terry. The harder you hug him the farther his tongue sticks out. 10/10 magical af https://t.co/RFToQQI8fJ 1 This is Mosby. He appears to be rather h*ckin snuggable af. 12/10 keep it up Mosby https://t.co/IiiBq460I7 1 This doggo was initially thrilled when she saw the happy cartoon pup but quickly realized she'd been deceived. 10/10 https://t.co/mvnBGaWULV 1 This is Kathmandu. He sees every move you make. Probably knows Jiu-Jitsu. 10/10 mysterious af https://t.co/z0cs7E4Xjj 1 This is Frank. He wears sunglasses and walks himself. 11/10 I'll never be this cool or independent https://t.co/pNNjBtHWPc 1 This is Lorelei. She's contemplating her existence and the eventual heat death of the universe. 11/10 very majestic https://t.co/xbUoULOIS8 1 RT @dog_rates: This is Nollie. She's waving at you. If you don't wave back you're a monster. She's also portable as hell. 12/10 https://t.c… 1 Meet Tripp. He's being eaten by a sherk and doesn't even care. Unfazed af. 11/10 keep doin you Tripp https://t.co/gGxjthmG1c 1 RT @dog_rates: This is Buddy. He ran into a glass door once. Now he's h*ckin skeptical. 13/10 empowering af (vid by Brittany Gaunt) https:/… 1 This is Fred. He's having one heck of a summer. 11/10 https://t.co/I7SFchkNk4 1 Meet Bear. He's a Beneboop Cumberclap. Extremely unamused. 13/10 I'm in love with this picture https://t.co/uC8kUqAz0W 1 I know it's tempting, but please stop sending in pics of Donald Trump. Thank you ...9/10 https://t.co/y35Y1TJERY 1 This is Django. He accidentally opened the front facing camera. Did him quite the frighten. 12/10 https://t.co/kQVQoOW9NZ 1 RT @dog_rates: I shall call him squishy and he shall be mine, and he shall be my squishy. 13/10 https://t.co/WId5lxNdPH 1 RT @jon_hill987: @dog_rates There is a cunningly disguised pupper here mate! 11/10 at least. https://t.co/7boff8zojZ 1 This is Crystal. She's flawless. Really wants to be a frat bro. 11/10 who does she even know here? https://t.co/WyqNFvEulG 1 I can't even comprehend how confused this dog must be right now. 10/10 https://t.co/8AGcQ4hIfK 1 Please only send in dogs. This t-rex is very scary. 5/10 ...might still pet (vid by @helizabethmicha) https://t.co/Vn6w5w8TO2 1 This is Waffles. He's a ship captain in real life and in @GoodDogsGame. Must've gotten to the max level (wink) 13/10 would sail with https://t.co/Z3LAaV2pKz 1 When you ask your professor about extra credit on the last day of class. 8/10 https://t.co/H6rqZyE4NP 1 Say hello to Carbon. This is his first time swimming. He's having a h*ckin blast. 10/10 we should all be this happy https://t.co/mADHGenzFS 1 Meet Winston. He's trapped in a cup of coffee. Poor pupper. 10/10 someone free him https://t.co/2e6cUtKUuc 1 This is Brad. He's a chubby lil pup. Doesn't really need the food he's trying to reach. 5/10 you've had enough Brad https://t.co/vPXKSaNsbE 1 This is Lorenzo. He's educated af. Just graduated college. 11/10 poor pupper can't even comprehend his debt https://t.co/dH3GzcjCtQ 1 This is Scout. She is a black Downton Abbey. Isn't afraid to get dirty. 9/10 nothing bad to say https://t.co/kH60oka1HW 1 This pupper just got his first kiss. 12/10 he's so happy https://t.co/2sHwD7HztL 1 This is Fido. He can tell the weather. Not good at fetch tho. Never comes when called. 4/10 would probably still pet https://t.co/4gOv2Q3iKP 1 This is Malcolm. He's absolutely terrified of heights. 8/10 hang in there pupper https://t.co/SVU00Sc9U2 1 This is Maude. She's the h*ckin happiest wasp you've ever seen. 10/10 would pet with caution https://t.co/etL8FHBrh8 1 RT @katieornah: @dog_rates learning a lot at college 12/10 for my professor thank u for the pupper slides https://t.co/nTFDr99hg0 1 Here we see an extremely rare Bearded Floofmallow. Only a few left in the wild. 11/10 would pet with a purpose https://t.co/jVJJKlPbvq 1 This is Winnie. She lost her body saving a children's hospital from an avalanche. 13/10 what a h*ckin hero https://t.co/Tf0rh9ZgZe 1 RT @dog_rates: Everybody look at this beautiful pupper 13/10 https://t.co/hyAC5Hq9GC 1 "FOR THE LAST TIME I DON'T WANNA PLAY TWISTER ALL THE SPOTS ARE GREY DAMN IT CINDY" ...10/10 https://t.co/uhQNehTpIu 1 This pupper's New Year's resolution was to become a Hershey's kiss. 11/10 she's super pumped about it https://t.co/D7jYj6vdwC 1 This is Covach. He's trying to melt the snow. 10/10 we all believe in you buddy https://t.co/fgMaP2zDMt 1 Say hello to Kawhi. He was doing fine until his hat fell off. He got it back though. 10/10 deep breaths pupper https://t.co/N5pM6WBx7e 1 Here we have a Gingivitis Pumpernickel named Zeus. Unmatched tennis ball capacity. 10/10 would highly recommend https://t.co/jPkd7hhX7m 1 This is Bo. He's going to make me cry. 13/10 please get off the bus for him Carly https://t.co/U7FvBZo6Bq 1 Can take selfies 11/10 https://t.co/ws2AMaNwPW 1 Ever seen a dog pet another dog? Both 13/10 truly an awe-inspiring scene. (Vid by @mdougherty20) https://t.co/3PoKf6cw7f 1 Say hello to Charlie. He's scholarly af. Quite intimidating with all his pupper knowledge 10/10 even built that fire https://t.co/9KThv6z8u5 1 Here we see a nifty leaping pupper. Feet look deadly. Sad that the holidays are over. 9/10 undeniably huggable https://t.co/ny8mnXhGOW 1 This is Watson. He trust falls on command. 13/10 it's elementary... (IG: wat.ki) https://t.co/goX3jewkYN 1 This is Astrid. She's a guide doggo in training. 13/10 would follow anywhere https://t.co/xo7FZFIAao 1 RT @EmilieGambril: 12/10 h*cking excited about my new shirt! @dog_rates https://t.co/zFEfMTaHqU 1 Say hello to Gizmo. He's quite the pupper. Confused by bed, but agile af. Can barely catch on camera. 11/10 so quick https://t.co/IE4ZblyZRY 1 This is Lolo. She's America af. Behind in science & math but can say whatever she wants on Twitter. 11/10 ...Merica https://t.co/Nwi3SYe8KA 1 RT @dog_rates: This is Gidget. She's a spy pupper. Stealthy as h*ck. Must've slipped pup and got caught. 12/10 would forgive then pet https… 1 This is Swagger. He's the Cleveland Browns ambassador. Hype as h*ck after that first win today. 10/10 https://t.co/lXFM1l22bG 1 Here's a heartwarming scene of a single father raising his two pups. Downright awe-inspiring af. 12/10 for everyone https://t.co/hfddJ0OiNR 1 This is Derek. You can't look at him and not smile. Must've just had a blue pupsicle. 12/10 would snug intensely https://t.co/BnVTMtUeI3 1 This is Coopson. He's a Blingin Schnitzel. Built fence himself. One ear is slightly defective. 10/10 would still pet https://t.co/MWw3pVMhJA 1 Meet Cash. He hath acquired a stick. A very good stick tbh. 12/10 would pat head approvingly https://t.co/lZhtizkURD 1 This is Aja. She was just told she's a good dog. Suspicions confirmed. 13/10 would tell again https://t.co/lsPyyAiF1r 1 This is Cooper. He only wakes up to switch gears. 12/10 helpful af https://t.co/EEIkAGVY64 1 This is Bayley. She fell asleep trying to escape her evil fence enclosure. 11/10 night night puppo https://t.co/AxSiqAKEKu 1 RT @dog_rates: Say hello to Jack (pronounced "Kevin"). He's a Virgo Episcopalian. Can summon rainbows. 11/10 magical as hell https://t.co/Y… 1 Here we have a corgi undercover as a malamute. Pawbably doing important investigative work. Zero control over tongue happenings. 13/10 https://t.co/44ItaMubBf 1 This is Nelly. He graduated with his dogtorate today. Wants to know if you're proud of him. 12/10 would give congratulatory boop https://t.co/4g4cfj3P4Y 1 This is Wilson. Named after the volleyball. He tongue wrestled a bee and lost. 13/10 valiant effort tho https://t.co/A5Mx4h1FSM 1 RT @dog_rates: I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC BY HIS OWNER THIS IS SO WILD. 14/10 ULTIMATE LEGEND STATUS https://t.co/7oQ1wpf… 1 Here's a very loving and accepting puppo. Appears to have read her Constitution well. 14/10 would pat head approvingly https://t.co/6ao80wIpV1 1 Say hello to Lily. She's pupset that her costume doesn't fit as well as last year. 12/10 poor puppo https://t.co/YSi6K1firY 1 Here's a handful of sleepy puppers. All look unaware of their surroundings. Lousy guard dogs. Still cute tho 11/10s https://t.co/lyXX3v5j4s 1 This is Corey. He's a Portobello Corgicool. Trying to convince you that he's not a hipster. 11/10 yea right Corey https://t.co/NzWUrFZydr 1 This is Angel. She stole the @ShopWeRateDogs shirt from her owner. Fits pretty well actually. 11/10 would forgive https://t.co/jaivZ1dcUL 1 We usually don't rate Deck-bound Saskatoon Black Bears, but this one is h*ckin flawless. Sneaky tongue slip too. 13/10 would hug firmly https://t.co/mNuMH9400n 1 We usually don't rate marshmallows but this one's having so much fun in the snow. 10/10 (vid by @kylejk24) https://t.co/NL2KwOioBh 1 This is Canela. She attempted some fancy porch pics. They were unsuccessful. 13/10 someone help her https://t.co/cLyzpcUcMX 1 Oh jeez u did me quite the spook little fella. We normally don't rate triceratops but this one seems suspiciously good. 11/10 would pet well https://t.co/BMtfCmNbnS 1 "Have a seat, son. There are some things we need to discuss" 10/10 https://t.co/g4G5tvfTVd 1 Meet Ronduh. She's a Finnish Checkered Blitzkrieg. Ears look fake. Shoes on point. 10/10 would pet extra well https://t.co/juktj5qiaD 1 Say hello to Tiger. He's a penbroke (little dog pun for ya, no need to applaud I know it was good) 10/10 good dog https://t.co/Yei0HzS3JN 1 Meet Bruiser & Charlie. They are the best of pals. Been through it all together. Both 11/10. 1 like=1 friendship https://t.co/PEXHuvSVD4 1 This is Izzy. She's showing off the dance moves she's been working on. 11/10 I guess hard work pays off https://t.co/4JS92YAxTi 1 This is Sophie. She just saw a spider. 10/10 don't just stand there Sophie https://t.co/VagYftZccT 1 We only rate dogs. Please don't send in Jesus. We're trying to remain professional and legitimate. Thank you... 14/10 https://t.co/wr3xsjeCIR 1 This is Lucy. She's strives to be the best potato she can be. 12/10 would boop https://t.co/lntsj7Fc4Y 1 There has clearly been a mistake. Pup did nothing wrong. 12/10 would help escape\nhttps://t.co/Juid3nnLbC 1 When you're having a blast and remember tomorrow's Monday. 11/10 https://t.co/YPsJasNVGe 1 Magical floating dog here. Very calm. Always hangs by the pond. Rather moist. Good listener. 6/10 personally I'd pet https://t.co/1euKoOvy49 1 This is Severus. He's here to fix your cable. Looks like he succeeded. Even offered to pupgrade your plan. 13/10 h*ckin helpful https://t.co/aX4brLLpWZ 1 Yea I can't handle the cuteness anymore. Curls for days. 12/10 for all https://t.co/sAI6gCGZYX 1 This pupper can only sleep on shoes. It's a crippling disease. Tearing his family apart. 12/10 I'd totally pet tho https://t.co/03XlvS8izg 1 Meet Toby. He's pupset because his hat isn't big enough. Christmas is ruined. 12/10 it'll be ok Toby https://t.co/zfdaGZlweq 1 Say hello to Ollie. He conducts this train. He also greets you as you enter. Kind af. 11/10 would pet so firmly https://t.co/jVxOGKEU0z 1 This is Monkey. She's supporting owners everywhere with her fancy #PrideMonth bandana. 13/10 love is love is love... https://t.co/lUcpnZDPz9 1 Strange pup here. Easily manipulated. Rather inbred. Sharp for a dog. Appears uncomfortable. 8/10 would still pet https://t.co/nSQrhwbk1V 1 THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY HI AFTER ALL. PUPGRADED TO A 14/10. WOULD BE AN HONOR TO FLY WITH https://t.co/p1hBHCmWnA 1 This is Chaz. He's an X Games half pipe superstar. 6 gold medals. Lost back legs saving a baby from a tornado 12/10 https://t.co/uxdOfblUB0 1 This is Ridley. He doesn't know how to couch. 7/10 https://t.co/UHJE0UgMf7 1 Say hello to Oakley and Charlie. They're convinced that they each have their own stick. Nobody tell them. Both 12/10 https://t.co/J2AJdyxglH 1 "Yes hi could I get a number 4 with no pickles" ...12/10 https://t.co/kQPVxqA3gq 1 This is Daisy. She loves that shoe. Still no seat belt. Super churlish. 12/10 the dogs are killing it today https://t.co/cZlkvgRPdn 1 Right after you graduate vs when you remember you're on your own now and can barely work a washing machine ...10/10 https://t.co/O1TLuYjsNS 1 This is Maisey. She fell asleep mid-excavation. Happens to the best of us. 13/10 would pat noggin approvingly https://t.co/tp1kQ8i9JF 1 OMIGOD 12/10 https://t.co/SVMF4Frf1w 1 This is Ralphus. He's powering up. Attempting maximum borkdrive. 13/10 inspirational af https://t.co/YnYAFCTTiK 1 This is Sully. He's a Leviticus Galapagos. Very powerful. Borderline unstoppable. Cool goggles. 10/10 https://t.co/zKNF77dxEA 1 This is Otis. Everybody look at Otis. 12/10 would probably faint while petting https://t.co/I9qoe1uEih 1 This is Cali. She arrived preassembled. Convenient af. 12/10 appears to be rather h*ckin pettable https://t.co/vOBV1ZqVcX 1 Meet Jax & Jil. Jil is yelling the pledge of allegiance. If u cant take the freedom get out the kitchen Jax. 10/10s https://t.co/jrg29NDNhI 1 Here are three doggos completely misjudging an airborne stick. Decent efforts tho. All 9/10 https://t.co/HCXQL4fGVZ 1 You may not have known you needed to see this today. 13/10 please enjoy (IG: emmylouroo) https://t.co/WZqNqygEyV 1 This is Einstein. He's having a really good day. Hopes you are too. H*ckin nifty tongue. 13/10 would snug intensely https://t.co/mdaQhhfpv6 1 This is Penny. Her tennis ball slowly rolled down her cone and into the pool. 8/10 bad things happen to good puppers https://t.co/YNWU7LeFgg 1 This is Harper. She scraped her elbow attempting a backflip off a tree. Valiant effort tho. 12/10 https://t.co/oHKJHghrp5 1 This is Ricky. He's being escorted out of the dog park for talking shit about the other dogs. 8/10 not cool Ricky https://t.co/XtDkrsdEfF 1 This is Clark. He's deadly af. Clearly part shark (see pic 2). 10/10 would totally still try to pet https://t.co/dmdEBOEctC 1 I present to you... Dog Jesus. 13/10 (he could be sitting on a rock but I doubt it) https://t.co/fR1P3g5I6k 1 "Dammit hooman quit playin I jus wanna wheat thin" 11/10 https://t.co/yAASRDPJnQ 1 This is Karl. Karl thinks he's slick. 6/10 sneaky pup https://t.co/Lo4ALwjVh4 1 Meet Sarge. His parents signed him up for dancing lessons but his true passion is roller coasters 11/10 very petable https://t.co/KvVoBIgkje 1 PUPDATE: can't see any. Even if I could, I couldn't reach them to pet. 0/10 much disappointment https://t.co/c7WXaB2nqX 1 In case you haven't seen the most dramatic sneeze ever... 13/10 https://t.co/iy7ylyZcsE 1 This is Lucy. She destroyed not one, but two remotes trying to turn off the debate. 11/10 relatable af https://t.co/3BXh073tDm 1 For the last time, WE. DO. NOT. RATE. BULBASAUR. We only rate dogs. Please only send dogs. Thank you ...9/10 https://t.co/GboDG8WhJG 1 Finally some constructive political change in this country. 11/10 https://t.co/mvQaETHVSb 1 Meet Max. He's a Fallopian Cephalopuff. Eyes are magical af. Lil dandruff problem. No big deal 10/10 would still pet https://t.co/c67nUjwmFs 1 Reckless pupper here. Not even looking at road. Absolute menace. No regard for fellow pupper lives. 10/10 still cute https://t.co/96IBkOYB7j 1 This is Rusty. He wasn't ready for the first pic. Clearly puppared for the second. 13/10 confirmed great boy https://t.co/tyER0KpdXj 1 Please send dogs. I'm tired of seeing other stuff like this dangerous pirate. We only rate dogs. Thank you... 10/10 https://t.co/YdLytdZOqv 1 RT @dog_rates: This is Canela. She attempted some fancy porch pics. They were unsuccessful. 13/10 someone help her https://t.co/cLyzpcUcMX 1 This is Alfy. You're witnessing his first watermelon experience. I think it was a success. 13/10 happy 4th Alfy 🇺🇸 https://t.co/fYP5RlutfA 1 Say hello to Winifred. He is a Papyrus Hydrangea mix. Can tie shoes. 11/10 inspiring pup https://t.co/mwnBN6ZkPt 1 This is Jackson. He was specifically told not to sleep in the fridge. Damn it Jackson. 11/10 would squeeze softly https://t.co/lJs10ZJsgj 1 This is Belle. She's never been more pupset. Encountered the worst imaginable type of zone. 12/10 would do anything to cheer pup https://t.co/fGQUzR8w3H 1 Meet Sebastian. He's a womanizer. Romantic af. Always covered in flower petals. Also a poet. 11/10 dreamy as hell https://t.co/eoL1bCpWCg 1 Sun burnt dog here. Quite large. Wants to promote peace. Looks unemployed. Ears for days. 7/10 would pet profusely https://t.co/WlKiN3ll0w 1 Meet Stanley. He likes road trips. Will shift for you. One ear more effective than other. 13/10 we don't leave until you buckle pup Stanley https://t.co/vmCu3PFCQq 1 Meet Jennifur. She's supposed to be navigating. Not even buckled up. Insubordinate & churlish. 11/10 would still pet https://t.co/h0trcJohYO 1 This made my day. 12/10 please enjoy https://t.co/VRTbo3aAcm 1 This is Charlie. He wins every game of chess he plays. Won't let opponent pet him until they forfeit. 13/10 you win again Charlie https://t.co/UkyQibIBzZ 1 C'mon guys. We've been over this. We only rate dogs. This is a cow. Please only submit dogs. Thank you...... 9/10 https://t.co/WjcELNEqN2 1 This is Reginald. He's one magical puppo. Aerodynamic af. 12/10 would catch https://t.co/t0cEeRbcXJ 1 I found a forest Pipsy. 12/10 https://t.co/mIQ1KoVsmU 1 At first I thought this was a shy doggo, but it's actually a Rare Canadian Floofer Owl. Amateurs would confuse the two. 11/10 only send dogs https://t.co/TXdT3tmuYk 1 This is Chuckles. He is one skeptical pupper. 10/10 stay woke Chuckles https://t.co/ZlcF0TIRW1 1 Say hello to Bisquick. He's a Beneplop Cumbersnug. Even smiles when wet. 12/10 I'd steal Bisquick https://t.co/5zX5XD3i6K 1 This is Scout. He specializes in mid-air freeze frames. 11/10 https://t.co/sAHmwRtfSq 1 This is Suki. She was born with a blurry tail (unfortunate). Next level tongue tho. 11/10 nifty hardwood https://t.co/05S8oYztgb 1 RT @dog_rates: HEY PUP WHAT'S THE PART OF THE HUMAN BODY THAT CONNECTS THE FOOT AND THE LEG? 11/10 so smart https://t.co/XQ1tRUmO3z 1 Please enjoy this pup in a cooler. Permanently ready for someone to throw a tennis ball his way. 12/10 https://t.co/KUS0xl7XIp 1 This is Ace. He's a window washer. One of the best around. 11/10 helpful af https://t.co/sTuRoYfzPv 1 Here's an anonymous doggo that appears to be very done with Christmas. 11/10 cheer up pup https://t.co/BzITyGw3JA 1 Say hello to Cupcake. She's an Icelandic Dippen Dot. Confused by the oddly geometric lawn pattern. 11/10 https://t.co/D7rorf4YKL 1 This pup's having a nightmare that he forgot to type a paper due first thing in the morning. 12/10 (vid by ... https://t.co/CufnbUT0pB 1 This is Sampson. He's about to get hit with a vicious draw 2. Has no idea. 11/10 poor pupper https://t.co/FYT9QBEnKG 1 This is Burt. He thinks your thesis statement is comically underdeveloped. 12/10 intellectual af https://t.co/jH6EN9cEn6 1 "This photographer took pics of her best friend before and after she told them they were beautiful" 12/10 https://t.co/510gJW9fsy 1 This is Autumn. Her favorite toy is a cheeseburger. She takes it everywhere. 11/10 https://t.co/JlPug12E5Z 1 This is a spotted Lipitor Rumpelstiltskin named Alphred. He can't wait for the Turkey. 10/10 would pet really well https://t.co/6GUGO7azNX 1 This is Bobble. He's a Croatian Galifianakis. Hears everything within 400 miles. 11/10 would snug diligently https://t.co/VwDc6PTDzk 1 This is Boomer. He's doing an advanced water takeoff. The opposite of Sully. Ears for control, mlem for style. 13/10 simply breathtaking https://t.co/noNpY2Laoo 1 This is Paull. He just stubbed his toe. 10/10 deep breaths Paull https://t.co/J5Mqn8VeYq 1 Me running from commitment. 10/10 https://t.co/ycVJyFFkES 1 This is Willem. He's a Penn State pupper. Thinks the hood makes him more intimidating. It doesn't. 12/10 https://t.co/Dp0s7MRIHK 1 Everyone needs to watch this. 13/10 https://t.co/Bb3xnpsWBC 1 This is Beya. She doesn't want to swim, so she's not going to. 13/10 nonconforming af (vid by @HappyTailsResor) https://t.co/qGeVjHSUKH 1 This is Huck. He's addicted to caffeine. Hope it's not too latte to seek help. 11/10 stay strong pupper https://t.co/iJE3F0VozW 1 Meet Dylan. He can use a fork but clearly can't put on a sweatshirt correctly. Looks like a disgruntled teen. 10/10 https://t.co/FWJQ1zQLiI 1 Meet Al Cabone. He's a gangsta puppa. Rather h*ckin ruthless. Shows no mercy sometimes. 11/10 pet w extreme caution https://t.co/OUwWbEKOUV 1 This is Happy. He's a bathtub reviewer. Seems to be pleased with this one. 12/10 https://t.co/Ln89R4FP7v 1 We've got a doggy down. Requesting backup. 12/10 for both. Please enjoy https://t.co/pmarb2dG0e 1 Here we see a faulty pupper. Might need to replace batteries. Try turning off & back on again. 9/10 would still pet https://t.co/O1E4AtHVxO 1 PUPDATE: just noticed this dog has some extra legs. Very advanced. Revolutionary af. Upgraded to a 9/10 1 This is Bubbles. He kinda resembles a fish. Always makes eye contact with u no matter what. Sneaky tongue slip. 5/10 https://t.co/Nrhvc5tLFT 1 This is Taz. He boxes leaves. 10/10 https://t.co/bWQ0iIcP0w 1 Meet Daisy. She's been pup for adoption for months now but hasn't gotten any applications. 11/10 let's change that\n\nhttps://t.co/Jlb9L0m3J0 https://t.co/Eh7fGFuy6r 1 RT @dog_rates: Meet Sammy. At first I was like "that's a snowflake. we only rate dogs," but he would've melted by now, so 10/10 https://t.c… 1 @markhoppus MARK THAT DOG HAS SEEN AND EXPERIENCED MANY THINGS. PROBABLY LOST OTHER EAR DOING SOMETHING HEROIC. 13/10 HUG THE DOG HOPPUS 1 This is Monty. He makes instantly regrettable decisions. Couldn't help himself. It looked like a ghost lollipop. 12/10 mistake happen https://t.co/8Wsr6b4RjE 1 Mighty rare dogs here. Long smooth necks. Great knees. Travel in squads. 1 out of every 14 is massive. 8/10 for all https://t.co/PoMKKnKpRd 1 This is Jonah. He's a Stinted Fisher Price. Enjoys chewing on his miniature RipStik. 10/10 very upbeat fellow https://t.co/7qjXy1uUYY 1 This is Binky. She appears to be rather h*ckin cozy. Nifty leg cross as well. 12/10 would snug well https://t.co/WFt82XLyEF 1 This dog is more successful than I will ever be. 13/10 absolute legend https://t.co/BPoaHySYwA 1 RT @dog_rates: Meet Lorenzo. He's an avid nifty hat wearer and absolute 13/10, but he needs your help to beat cancer. Link below\n\nhttps://t… 1 This is Bruno. He is a service shark. Only gets out of the water to assist you. 13/10 terrifyingly good boy https://t.co/u1XPQMl29g 1 This is Zoey. She doesn't want to be one of the scary sharks. Just wants to be a snuggly pettable boatpet. 13/10 #BarkWeek https://t.co/9TwLuAGH0b 1 This is Bruce. He never backs down from a challenge. 11/10 you got this Bruce https://t.co/aI7umZHIq7 1 This is Derek. He just got balled on. Can't even get up. Poor thing. 10/10 hang in there pupper https://t.co/BIRRF3bcWH 1 RT @dog_rates: This is Cali. She arrived preassembled. Convenient af. 12/10 appears to be rather h*ckin pettable https://t.co/vOBV1ZqVcX 1 Meet Shadow. In an attempt to reach maximum zooming borkdrive, he tore his ACL. Still 13/10 tho. Help him out below\n\nhttps://t.co/245xJJElsY https://t.co/lUiQH219v6 1 All this pupper wanted to do was go skiing. No one told him about the El Niño. Poor pupper. 10/10 maybe next year https://t.co/fTgbq1UBR9 1 This is Roscoe. Another pupper fallen victim to spontaneous tongue ejections. Get the BlepiPen immediate. 12/10 deep breaths Roscoe https://t.co/RGE08MIJox 1 This is Noosh. He noticed you were in the shower and thought you could use some company. 12/10 h*ckin loyal https://t.co/Uq3ChFgWA3 1 I swear to god if we get sent another Blue Madagascan Peacock we'll deactivate. We 👏 Only 👏 Rate 👏 Dogs... 9/10 https://t.co/bbta2Q4URK 1 Unique dog here. Very small. Lives in container of Frosted Flakes (?). Short legs. Must be rare 6/10 would still pet https://t.co/XMD9CwjEnM 1 This is Duke. He is not a fan of the pupporazzi. 12/10 https://t.co/SgpBVYIL18 1 This is Bella. She's a Genghis Flopped Canuck. Stuck in trash can. 9/10 not to happy about it https://t.co/RMv9EAv57u 1 RT @dog_rates: Ohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboy. 10/10 for all (by happytailsresort) https://t.c… 1 RIP Loki. Thank you for the good times. You will be missed by many. 14/10 https://t.co/gJKD9pst5A 1 RT @dog_rates: This is Sampson. He's about to get hit with a vicious draw 2. Has no idea. 11/10 poor pupper https://t.co/FYT9QBEnKG 1 This is Tater. His underbite is fierce af. Doesn't give a damn about your engagement photo. 8/10 https://t.co/nLuPY3pY12 1 Meet Holly. She's trying to teach small human-like pup about blocks but he's not paying attention smh. 11/10 & 8/10 https://t.co/RcksaUrGNu 1 RT @dog_rates: Meet Lola. Her hobbies include being precious af and using her foot as a toothbrush. 12/10 Lola requests your help\n\nhttps://… 1 Meet Rambo & Kiwi. Rambo's the pup with the sharp toes & rad mohawk. One stays woke while one sleeps. 10/10 for both https://t.co/MpH1Fe9LhZ 1 This is Nala. She's a future Dogue model. Won't respond to my texts. 13/10 would be an honor to pet https://t.co/zP1IvAATWv 1 RT @KennyFromDaBlok: 14/10 h*ckin good hats. will wear daily @dog_rates https://t.co/rHLoU5gS30 1 This is Eli. He can fly. 13/10 magical af https://t.co/huPSJJ7FDI 1 This is Randall. He's from Chernobyl. Built playground himself. Has been stuck up there quite a while. 5/10 good dog https://t.co/pzrvc7wKGd 1 This is Ava. She doesn't understand flowers. 12/10 would caress firmly https://t.co/BxTJAFSIgk 1 This is Dietrich. He hops at random. Other doggos don't understand him. It upsets him greatly. 8/10 would comfort https://t.co/U8cSRz8wzC 1 Meet Birf. He thinks he's gone blind. 10/10 very frightened pupper https://t.co/oDkspjNWYX 1 This pupper loves leaves. 11/10 for committed leaf lover https://t.co/APvLqbEhkF 1 This is Charl. He's a bully. Chucks that dumbbell around like its nothing. Sharp neck. Exceptionally unfluffy. 3/10 https://t.co/VfLoDZecJ7 1 This is a southern Vesuvius bumblegruff. Can drive a truck (wow). Made friends with 5 other nifty dogs (neat). 7/10 https://t.co/LopTBkKa8h 1 This is Coops. His ship is taking on water. Sound the alarm. Much distress. Requesting immediate assistance. 10/10 https://t.co/8Nuny4lLE3 1 This is Jimison. He was just called a good boy. 13/10 https://t.co/djMep7mGkV 1 THE EYES 12/10\n\nI'm sorry. These are supposed to be funny but your dogs are too adorable https://t.co/z1xPTgVLc7 1 This dog doesn't know how to stairs. Quite tragic really. 9/10 get it together pup https://t.co/kTpr9PTMg1 1 This is Oliviér. He's a Baptist Hindquarter. Also smooth af with the babes. 10/10 I'd totally get in a car with him https://t.co/fj4c170cxk 1 Say hello to Andy. He can balance on one foot, obliterate u in checkers, & transform into a rug. 11/10 much talents https://t.co/idzH8JH06g 1 This is Boots. She doesn't know what to do with treats so she just holds them. Very good girl. 12/10 would give more treats https://t.co/eAA8lratd3 1 This is Steven. He got locked outside. Damn it Steven. 5/10 nice grill tho https://t.co/zf7Sxxjfp3 1 This is Sam. He's trying to escape the inordinate monotony of conforming to everyday status quo. 10/10 https://t.co/PXnCdz8qzK 1 This is Marq. He stole this car. 7/10 wtf Marq? https://t.co/MHScqo5l8c 1 This is Hector. He thinks he's a hammer. Silly Hector. You're a pupper, not a hammer. 10/10 https://t.co/OdUFuZIXiI 1 Meet Shadow. She's tired of the responsibilities associated with being a dog. No longer strives to attain ball. 9/10 https://t.co/cdOkfEpjFw 1 She thought the sunset was pretty, but I thought she was prettier. 10/10 https://t.co/HSL3mnP5NX 1 This is Tino. He really likes corndogs. 9/10 https://t.co/cUxGtnBfc2 1 We only rate dogs. Please don't send in other things like this very good Christmas tree. Thank you... 13/10 https://t.co/rvSANEsQZJ 1 RT @dog_rates: Say hello to Quinn. She's quite the goofball. Not even a year old. Confirmed 13/10 but she really needs your help \n\nhttps://… 1 Here's a helicopter pupper. He takes off at random. H*ckin hard to control. 12/10 rare af https://t.co/GRWPgNKt2z 1 For those who claim this is a goat, u are wrong. It is not the Greatest Of All Time. The rating of 5/10 should have made that clear. Thank u 1 This is Mia. She makes awful decisions. 8/10 https://t.co/G6TQVgTcZz 1 "The dogtor is in hahahaha no but seriously I'm very qualified and that tumor is definitely malignant" 10/10 https://t.co/ULqThwWmLg 1 This is Sadie. She's a Bohemian Rhapsody. Remarkably portable. Could sneak on roller coasters with (probably). 11/10 https://t.co/DB8fyeDs8B 1 This is a curly Ticonderoga named Pepe. No feet. Loves to jet ski. 11/10 would hug until forever https://t.co/cyDfaK8NBc 1 I know a lot of you are studying for finals. Good luck! Here's this. It should help somehow. 12/10 https://t.co/s2ktuPQd79 1 Super speedy pupper. Does not go gentle into that goodnight. 10/10 https://t.co/uPXBXS1XNb 1 This pupper killed this great white in an epic sea battle. Now wears it as a trophy. Such brave. Much fierce. 13/10 https://t.co/Lu0ECu5tO5 1 Very human-like. Cute overbite smile *finger to earpiece* I'm being told that the dog is actually on the right\n10/10 https://t.co/MSIbWu4YYs 1 This is Clark. He passed pupper training today. Round of appaws for Clark. 13/10 https://t.co/7pUjwe8X6B 1 Downright majestic af 12/10 https://t.co/WFh2FEbYzj 1 This is Malcolm. He goes from sneaky tongue slip to flirt wink city in a matter of seconds. 12/10 would hug softly https://t.co/rHwfySggqR 1 Meet Jaycob. He got scared of the vacuum. Hide & seek champ. Almost better than Kony. Solid shampoo selection. 10/10 https://t.co/952hUV6RiK 1 This is Henry. He's a shit dog. Short pointy ears. Leaves trail of pee. Not fluffy. Doesn't come when called. 2/10 https://t.co/Pu9RhfHDEQ 1 This is Sophie. She's a Jubilant Bush Pupper. Super h*ckin rare. Appears at random just to smile at the locals. 11.27/10 would smile back https://t.co/QFaUiIHxHq 1 This is Phil. That's his comfort stick. He holds onto it whenever he's sad. 11/10 don't be sad Phil https://t.co/ULdPY6CLpq 1 Meet Rilo. He's a Northern Curly Ticonderoga. Currently balancing on one paw even in strong wind. Acrobatic af 11/10 https://t.co/KInss2PXyX 1 This is Gus. He likes to be close to you, which is good because you want to be close to Gus. 12/10 would boop then pet https://t.co/DrsrQkEfnb 1 This is Charlie. He's a West Side Niddlewog. Mucho fluffy. 12/10 would pet so damn well https://t.co/B9dOrmnPVt 1 Guys please stop sending pictures without any dogs in th- oh never mind hello excuse me sir. 12/10 stealthy as h*ck https://t.co/brCQoqc8AW 1 This is Chesterson. He's a Bolivian Scoop Dog. Incredibly portable. Can't bark for shit tho. 7/10 would still pet https://t.co/EatAd8JhyW 1 This is Jerry. He's a great listener. Low maintenance. Hard to get leash on tho. 8/10 still good dog https://t.co/NsDIt8Z80Z 1 This is Sandy. He's sexually confused. Thinks he's a pigeon. Also an All-American cheese catcher. 10/10 so petable https://t.co/Htu8plSqEu 1 This is Lance. Lance doesn't give a shit. 10/10 we should all be more like Lance https://t.co/SqnG9Ap28J 1 RT @dog_rates: This is an East African Chalupa Seal. We only rate dogs. Please only send in dogs. Thank you... 10/10 https://t.co/iHe6liLwWR 1 Here we have a majestic great white breaching off South Africa's coast. Absolutely h*ckin breathtaking. 13/10 (IG: tucker_marlo) #BarkWeek https://t.co/kQ04fDDRmh 1 This is Jamesy. He gives a kiss to every other pupper he sees on his walk. 13/10 such passion, much tender https://t.co/wk7TfysWHr 1 RT @Patreon: Well. @dog_rates is on Patreon. \n\n12/10. \n\nhttps://t.co/rnKvzt6RJs https://t.co/v4e2ywe8iO 1 This sneezy pupper is just adorable af. 12/10 (vid by @gwilks1) https://t.co/h5aI0Tim4j 1 This is Derek. All the dogs adore Derek. He's a great guy. 10/10 really solid pup https://t.co/KgcsGNb61s 1 Meet Herschel. He's slightly bigger than ur average pupper. Looks lonely. Could probably ride 7/10 would totally pet https://t.co/VGaIMktX10 1 This is Paisley. She really wanted to be president this time. Dreams officially crushed. 13/10 https://t.co/liJGwMp17E 1 This is Reginald. He starts screaming at random. 12/10 cuddly af https://t.co/YgNuDQbv89 1 Meet Lorenzo. He's an avid nifty hat wearer and absolute 13/10, but he needs your help to beat cancer. Link below\n\nhttps://t.co/qZdSdzm08p https://t.co/oDIQ1KkdPt 1 Here we have a well-established sunblockerspaniel. Lost his other flip-flop. 6/10 not very waterproof https://t.co/3RU6x0vHB7 1 RT @dog_rates: This is Alfie. He's touching a butt. Couldn't be happier. 11/10 https://t.co/gx3xF5mZbo 1 RT @dog_rates: This is Paull. He just stubbed his toe. 10/10 deep breaths Paull https://t.co/J5Mqn8VeYq 1 Here is the Rand Paul of retrievers folks! He's probably good at poker. Can drink beer (lol rad). 8/10 good dog https://t.co/pYAJkAe76p 1 This is Oscar. He has legendary eyebrows and he h*ckin knows it. Curly af too. 12/10 would hug passionately https://t.co/xuxZoObmF0 1 This is Finn. He likes eavesdropping from filing cabinets. It's a real issue but no one has approached him about it. 11/10 would still pet https://t.co/s8W8Del9HQ 1 Another topnotch dog. His name is Big Jumpy Rat. Massive ass feet. Superior tail. Jumps high af. 12/10 great pup https://t.co/seESNzgsdm 1 *struggling to breathe properly* 12/10 https://t.co/NKHx0pcOii 1 This is Gary. He just wanted to say hi. 9/10 very personable pup https://t.co/Sk3CbhmKSW 1 This lil pup is Oliver. Hops around. Has wings but doesn't fly (lame). Annoying chirp. Won't catch tennis balls 2/10 https://t.co/DnhUw0aBM2 1 This is Cody. He zoomed too aggressively and tore his ACL. Happens to the best of us. Still 13/10\n\nHelp Cody here: https://t.co/4hxnDOt1CV https://t.co/42ryYRQ2Q4 1 Super rare dog. Endangered (?). Thinks it's funny. Mocks everything I say. Colorful af. Has wings (dope). 9/10 https://t.co/BY8nQAMz0x 1 Yea I lied. Here's more. All 13/10 https://t.co/ZQZf2U4xCP 1 This is Rontu. He is described as a pal, cuddle bug, protector and constant shadow. 12/10, but he needs your help\n\nhttps://t.co/zK4cpKPFfU https://t.co/7Xvoalr798 1 This is Leela. She's a Fetty Woof. Lost eye while saving a baby from an avalanche. 11/10 true h*ckin hero https://t.co/2lBg3ZgivD 1 This is Jed. He may be the fanciest pupper in the game right now. Knows it too. 13/10 would sign modeling contract https://t.co/0YplNnSMEm 1 "Ma'am, for the last time, I'm not authorized to make that type of transaction" 11/10 https://t.co/nPTBsdm3BF 1 This dog is being demoted to a 9/10 for not wearing a helmet while riding. Gotta stay safe out there. Thank you 1 This is Archie. He hears everything you say. Doesn't matter where you are. 12/10 https://t.co/0l4I8famYp 1 aahhhhkslaldhwnxmzbbs 12/10 for being da smooshiest https://t.co/UOPdXmUz4H 1 This is Brady. He's a recovering alcoholic. Demonstrating incredible restraint here. 12/10 don't give pup, don't give in, Brady https://t.co/B1iBuSq3hr 1 This is Mack. He's rather h*ckin sleepy. Exceptional ears. 12/10 would boop https://t.co/XRPvTPF0VH 1 This is Rascal. He's paddling an imaginary canoe. 11/10 https://t.co/Ajquq6oGSg 1 This is Phil. He's a father. A very good father too. 13/10 everybody loves Phil https://t.co/9p6ECXJMMu 1 This is Hank. He's been outside for 3 minutes and already made a friend. Way to go Hank. 11/10 for both https://t.co/wHUElL84RC 1 This is Evy. She doesn't want to be a Koala. 9/10 https://t.co/VITeF0Kl9L 1 Meet Nugget and Hank. Nugget took Hank's bone. Hank is wondering if you would please return it to him. Both 13/10 would not intervene https://t.co/ogith9ejNj 1 Meet Alejandro. He's an extremely seductive pup. 10/10 https://t.co/C7dPcCUNpF 1 Here's a super majestic doggo and a sunset 11/10 https://t.co/UACnoyi8zu 1 This is Shakespeare. He appears to be maximum level pettable. Born with no eyes tho (tragic). 10/10 probably wise https://t.co/rA8WUVOLBr 1 Meet Strudel. He's rather h*ckin pupset that your clothes clash. 11/10 click the link to see how u can help Strudel\n\nhttps://t.co/3uxgLz8d0l https://t.co/O0ECL1StB2 1 We normally don't rate bears but this one seems nice. Her name is Thea. Appears rather fluffy. 10/10 good bear https://t.co/fZc7MixeeT 1 This is Raymond. He controls fountains with his tongue. 11/10 pretty damn magical https://t.co/9aMxSbOaAZ 1 Meet Roosevelt. He's preparing for takeoff. Make sure tray tables are in their full pupright & licked position\n11/10 https://t.co/7CQkn3gHOQ 1 This is Sadie and her 2 pups Shebang & Ruffalo. Sadie says single parenting is challenging but rewarding. All 10/10 https://t.co/UzbhwXcLne 1 This is Eazy-E. He's colorful af. Must be rare. Submerged in Sprite (rad). Doesn't perform well when not wet. 6/10 https://t.co/UtFI7eUCjE 1 Get you a pup that can do both. 10/10 https://t.co/zSbyvm62xZ 1 Meet Koda. He's large. Looks very soft. Great bangs. Powerful owner. 11/10 would pet the hell out of https://t.co/mzPoS9wCqp 1 If your Monday isn't going so well just take a look at this. Both 12/10 https://t.co/GJT6SILPGU 1 RT if you are as ready for summer as this pup is 12/10 https://t.co/xdNNEZdGJY 1 Meet Yogi. He doesn't have any important dog meetings today he just enjoys looking his best at all times. 12/10 for dangerously dapper doggo https://t.co/YSI00BzTBZ 1 Say hello to Jerome. He can shoot french fries out of his mouth at insane speeds. Deadly af. 10/10 https://t.co/dIy88HwrX8 1 This is Sprout. He's just precious af. 12/10 I'd do anything for Sprout https://t.co/DxlX1yTVYY 1 Here's another picture without a dog in it. Idk why you guys keep sending these. 4/10 just because that's a neat rug https://t.co/mOmnL19Wsl 1 This is Herald. He likes to swing. Subtle tongue slip. Owner good at b-ball. Creepy person on bench back there. 9/10 https://t.co/rcrKkL7eB6 1 RT @dog_rates: I present to you... Dog Jesus. 13/10 (he could be sitting on a rock but I doubt it) https://t.co/fR1P3g5I6k 1 This is Buddy. His father was a bear and his mother was a perfectly toasted marshmallow. 12/10 would snug so well https://t.co/zGSj1oUgxx 1 This is Gary. He couldn't miss this puppertunity for a selfie. Flawless focusing skills. 13/10 would boop intensely https://t.co/7CSWCl8I6s 1 This is Olivia. She's a passionate advocate of candid selfies. 12/10 would boop shnoop https://t.co/0LdNjoiNbv 1 Meet Kuyu. He was trapped in a well for 10 days. Rescued yesterday using a device designed by a local robotics team. 14/10 for all involved https://t.co/l38R6IZNNg 1 This is Daisy. She's puppears to be rare as all h*ck. Only seven like her currently domesticated. 13/10 pettable af https://t.co/meUc8jufAO 1 RT @dog_rates: This is Philbert. His toilet broke and he doesn't know what to do. Trying not to panic. 11/10 furustrated af https://t.co/Nb… 1 This is Dexter. He was reunited with his mom yesterday after she was stuck in Iran during the travel Bannon. 13/10 welcome home https://t.co/U50RlRw4is 1 RT @dog_rates: This is Larry. He has no self control. Tongue still nifty af tho 11/10 https://t.co/ghyT4Ubk1r 1 Awesome dog here. Not sure where it is tho. Spectacular camouflage. Enjoys leaves. Not very soft. 5/10 still petable https://t.co/rOTOteKx4q 1 This is Moe. He's a fetty woof. Got a cardboard cutout of himself for Christmas. 13/10 inspirational af https://t.co/gCnAeL2mvT 1 I'm just going to leave this one here as well. 13/10 https://t.co/DaD5SyajWt 1 Meet Trooper. He picks pup recyclables that have blown out of bins in the neighborhood and puts them back. 13/10 environmentally savvy af https://t.co/BqSttrTuIl 1 This is Wally. He's a Flaccid Mitochondria. Going on vacation. Bag definitely full of treats. Great hat. 9/10 https://t.co/vYs9IVzHY9 1 This is Hank. He's mischievous af. Doesn't even know what he was trying to do here. 8/10 quit the shit Hank damn https://t.co/3r7wjfsXHc 1 Happy 4/20 from the squad! 13/10 for all https://t.co/eV1diwds8a 1 Here's a h*ckin peaceful boy. Unbothered by the comings and goings. 13/10 please reveal your wise ways https://t.co/yeaH8Ej5eM 1 This is Glacier. He's a very happy pup. Loves to sing in the sunlight. 11/10 https://t.co/jTBPqKgkz7 1 You'll get your package when that precious man is done appreciating the pups. 13/10 for everyone https://t.co/PFp4MghzBW 1 Meet Snoop. His number one passion is sticking his head out of car windows, so he purchased some doggles. Stylish af. 13/10 happy travels https://t.co/iHYfZdz444 1 This is Monster. Not an actual monster tho. He's showing you his tongue. Very impressive Monster. 12/10 would snug https://t.co/RhaPExuxJL 1 This is Archie. He's a Bisquick Taj Mapaw. Too many people are touching him. It is doing him a discomfort. 10/10 https://t.co/CJJpjTMzPQ 1 Say hello to Zara. She found a sandal and couldn't be happier. 12/10 great work https://t.co/zQUuVu812n 1 This is Abby. She got her face stuck in a glass. Churlish af. 9/10 rookie move puppo https://t.co/2FPb45NXrK 1 This is Maxaroni. He's curly af. Also rather fabulous. 11/10 would hug well https://t.co/A216OjIdca 1 This is Harvey. He's stealthy af. 10/10 would do my best to pet https://t.co/zAzaRT6NnT 1 ERMAHGERD 12/10 please enjoy https://t.co/7WrAWKdBac 1 2 rare dogs. They waddle (v inefficient). Sometimes slide on bellies. Right one wants to be aircraft Marshall. 9/10s https://t.co/P8bivfp5sU 1 This is Finn. He's wondering if you come here often. Fr*ckin flirtatious af. 12/10 would give number to https://t.co/ii5eNX5LJT 1 This is a Slovakian Helter Skelter Feta named Leroi. Likes to skip on roofs. Good traction. Much balance. 10/10 wow! https://t.co/Dmy2mY2Qj5 1 This is Fletcher. He's had a ruff night. No more Fireball for Fletcher. 8/10 it'll be over soon pupper https://t.co/tA4WpkI2cw 1 Can you spot Toby the guilty pupper? 7/10 would be higher but he made quite the mess shredding his stuffed pals https://t.co/3uCcDEJLXs 1 RT @dog_rates: Here's a pupper before and after being asked "who's a good girl?" Unsure as h*ck. 12/10 hint hint it's you https://t.co/ORiK… 1 Gang of fearless hoofed puppers here. Straight savages. Elevated for extra terror. Front one has killed before 6/10s https://t.co/jkCb25OWfh 1 This is Sky. She's learning how to roll her R's. 12/10 cultured af https://t.co/OuaVvVkwJ1 1 This is Bubbles. He's a Yorkshire Piccolope. 11/10 would snug aggressively https://t.co/3BhMojONxq 1 This is Cooper. His bow tie was too heavy for the front so he moved it to the side. Balanced af now. 13/10 https://t.co/jG1PAFkB81 1 "Hello yes I'll just get one of each color thanks" 12/10 for all https://t.co/AMDsllQs7a 1 Great picture here. Dog on the right panicked & forgot about his tongue. Middle green dog must've fainted. All 10/10 https://t.co/31npKUAox0 1 This is Carter. He wakes up in the morning and pisses excellence. 10/10 best there is plain and simple https://t.co/pHktDjpFr8 1 When you realize it doesn't matter how hard you study. You're still going to fail. 10/10 https://t.co/qzYXbyv0SJ 1 This is Ralpher. He's an East Guinean Flop Dog. Cuddly af. 12/10 https://t.co/rVOLuNRpjH 1 This is Dakota. He hasn't grow into his skin yet. 11/10 would squeeze softly https://t.co/IvFSlNXpgj 1 RT @dog_rates: Here's a pupper with squeaky hiccups. Please enjoy. 13/10 https://t.co/MiMKtsLN6k 1 Meet Strider. He thinks he's a sorority girl. Already wants to go to NYC for a weekend to say he's "studied abroad" 10/10 https://t.co/KYZkPuiC1l 1 This is Neptune. He's a Snowy Swiss Mountain Floofapolis. Cheeky wink. Tongue nifty af. 11/10 would pet so firmly https://t.co/SoZq2Xoopv 1 This is Baxter. He looks like a fun dog. Prefers action shots. 11/10 the last one is impeccable https://t.co/LHcH1yhhIb 1 "Don't talk to me or my son ever again" ...10/10 for both https://t.co/s96OYXZIfK 1 Please don't send in photos without dogs in them. We're not @porch_rates. Insubordinate and churlish. Pretty good porch tho 11/10 https://t.co/HauE8M3Bu4 1 This is Sparky. That's his pancake now. He will raise it as his own. 10/10 https://t.co/96tMaWyoWt 1 HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SAY. IT'S. H*CKIN. RIDICULOUS. THAT. DOGS. CAN'T VOTE. ABSOLUTE. CODSWALLUP. THANK. YOU. 13/10 https://t.co/SqKJPwbQ2g 1 This is Lulu. She's contemplating all her unreached 2015 goals and daydreaming of a more efficient tomorrow. 10/10 https://t.co/h3ScYuz77J 1 This is Keurig. He apparently headbutts other dogs to greet them. Not cool Keurig. So fluffy tho 12/10 https://t.co/zexdr61Q5M 1 12/10 gimme now https://t.co/QZAnwgnOMB 1 This little fella really hates stairs. Prefers bush. 13/10 legendary pupper https://t.co/e3LPMAHj7p 1 Here's a doggo struggling to cope with the winds. 13/10 https://t.co/qv3aUwaouT 1 This is Erik. He's fucken massive. But also kind. Let's people hug him for free. Looks soft. 11/10 I would hug Erik https://t.co/MT7Q4aDQS1 1 "So... we meat again" (I'm so sorry for that pun I couldn't resist pls don't unfollow) 10/10 https://t.co/XFBrrqapZa 1 This is Finley. She's a Beneboop Cumbersplash. 12/10 I'd do unspeakable things for Finley https://t.co/dS8SCbNF9P 1 Here's a doggo who has concluded that Christmas is entirely too bright. Requests you tone it down a notch. 11/10 https://t.co/cD967DjnIn 1 Flamboyant pup here. Probably poisonous. Won't eat kibble. Doesn't bark. Slow af. Petting doesn't look fun. 1/10 https://t.co/jxukeh2BeO 1 This is Rocco. He's doing his best. 13/10 someone help him (IG: rocco_roni) https://t.co/qFsl1nnXMv 1 This is officially the greatest yawn of all time. 12/10 https://t.co/4R0Cc0sLVE 1 This is Nala. She got in trouble. One h*ck of a pupnishment. Still 11/10 would pet https://t.co/EmJbG0skLt 1 Meet Wilson. He got caught humping the futon. He's like "dude, help me out here" 10/10 I'd help Wilson out https://t.co/m6XoclB0qv 1 This is JD (stands for "just dog"). He's like Airbud but with trading card games instead of sports. 10/10 much skill https://t.co/zzueJV9jCF 1 This is Thumas. He covered himself in nanners for maximum camouflage. It didn't work. I can still see u Thumas. 9/10 https://t.co/x0ZDlNqfb1 1 RT @hownottodraw: The story/person behind @dog_rates is heckin adorable af. 11/10, probably would pet. https://t.co/AG5UnRrmzJ 1 Here's a frustrated pupper attempting to escape a pool of Frosted Flakes. 12/10 https://t.co/GAYViEweWr 1 RT @dog_rates: This is Anakin. He strives to reach his full doggo potential. Born with blurry tail tho. 11/10 would still pet well https://… 1 This is Bo. He's a West Congolese Bugaboop Snuggle. Rather exotic. Master of the head tilt. 12/10 would pay to pet https://t.co/2jwxxtNzoN 1 Pup had to be removed cuz it wouldn't have been fair to the opposing team. 13/10 absolute legend ⚽️\nhttps://t.co/BHICimO58W 1 RT @dog_rates: Here's a doggo blowing bubbles. It's downright legendary. 13/10 would watch on repeat forever (vid by Kent Duryee) https://t… 1 That is Quizno. This is his beach. He does not tolerate human shenanigans on his beach. 10/10 reclaim ur land doggo https://t.co/vdr7DaRSa7 1 *faints* 12/10 perfection in pupper form https://t.co/t6TxTwTLEK 1 This is a Sagitariot Baklava mix. Loves her new hat. 11/10 radiant pup https://t.co/Bko5kFJYUU 1 This is Harry. His ears are activated one at a time. Incredibly rare to witness in person. Very special moment here. 13/10 blessed as h*ck https://t.co/ejHvGDfWoa 1 This is just a beautiful pupper good shit evolution. 12/10 https://t.co/2L8pI0Z2Ib 1 This is Paisley. She ate a flower just to prove she could. Savage af. 13/10 would pet so well https://t.co/cPq9fYvkzr 1 Meet Wafer. He represents every fiber of my being. 13/10 very good dog https://t.co/I7bkhxBxUG 1 RT @dog_rates: This is Klein. These pics were taken a month apart. He knows he's a stud now. 12/10 total heartthrob https://t.co/guDkLrX8zV 1 I thought I made this very clear. We only rate dogs. Stop sending other things like this shark. Thank you... 9/10 https://t.co/CXSJZ4Stk3 1 Seriously guys? Again? We only rate dogs. Please stop submitting other things like this super good hammerhead shark. Thank you... 12/10 https://t.co/TCMC90mSOT 1 This is Bo. He emanates happiness. 12/10 I could cut the freedom with a knife https://t.co/c7LNFt39eR 1 This is Brandonald. He accidentally opened the front facing camera. Playing it off rather heckin well. 11/10 https://t.co/uPUAotqQtM 1 RT @dog_rates: This is Reginald. He's one magical puppo. Aerodynamic af. 12/10 would catch https://t.co/t0cEeRbcXJ 1 Meet Hanz. He heard some thunder. 10/10 https://t.co/pKJK23j0QZ 1 This is Wyatt. His throne is modeled after him. 13/10 Wyatt is a very big deal https://t.co/PccQ1CFEDd 1 This is Miguel. He was the only remaining doggo at the adoption center after the weekend. Let's change that. 12/10\n\nhttps://t.co/P0bO8mCQwN https://t.co/SU4K34NT4M 1 This is Ava. She just blasted off. Streamline af. Aerodynamic as h*ck. One small step for pupper, one giant leap for pupkind. 12/10 https://t.co/W4KffrdX3Q 1 This is Dutch. He dressed up as his favorite emoji for Valentine's Day. I've got heart eyes for his heart eyes. 13/10 https://t.co/BCbmFYLrse 1 This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wuqaPS 1 Here we have some incredible doggos for #K9VeteransDay. All brave as h*ck. Salute your dog in solidarity. 14/10 for all https://t.co/SVNMdFqKDL 1 This is Raymond. He's absolutely terrified of floating tennis ball. 10/10 it'll be ok pupper https://t.co/QyH1CaY3SM 1 This is Godzilla pupper. He had a ruff childhood & now deflects that pain outward by terrorizing cities. Tragic 9/10 https://t.co/g1tLGkyaxr 1 This is Edd. He's a Czechoslovakian Googolplex Merlot. Ready for Christmas. Take that Starbucks. Very poised. 10/10 https://t.co/dupWSIpSrG 1 This is Sandra. She's going skydiving. Nice adidas sandals. Stellar house plant. 11/10 https://t.co/orbkAq9kYF 1 I know we only rate dogs, but since it's Easter I guess we could rate a bunny for a change. 10/10 petable as hell https://t.co/O2RlKXigHu 1 This is Albus. He's soaked as h*ck. Seems to have misplaced an ear as well. Still in good spirits tho. 12/10 would dry https://t.co/yUM8jYStuG 1 This is Pluto. He's holding little waddling dog hostage. Little waddling dog very desperate at this point sos. 8/10 https://t.co/HMcD9SLOAN 1 This is Lily. She accidentally dropped all her Kohl's cash overboard. Day officially ruined. 10/10 hang in there pup https://t.co/BJbtCqGwZK 1 RT @dog_rates: Everybody drop what you're doing and look at this dog. 13/10 must be super h*ckin rare https://t.co/I1bJUzUEW5 1 Meet Travis and Flurp. Travis is pretty chill but Flurp can't lie down properly. 10/10 & 8/10\nget it together Flurp https://t.co/Akzl5ynMmE 1 RT @dog_rates: This is Maddie. She gets some wicked air time. Hardcore barkour. 11/10 nimble af https://t.co/bROYbceZ1u 1 RT @dog_rates: I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\nhttps://t… 1 This is Stewie. He will roundhouse kick anyone who questions his independence. 11/10 free af https://t.co/dDx2gKefYo 1 This doggo is just waiting for someone to be proud of her and her accomplishment. 13/10 legendary af https://t.co/9T2h14yn4Q 1 I hope everyone enjoys this picture as much as I do. This is Toby. 12/10 https://t.co/vHnu1g9EJm 1 This is Dwight. He's a pointy pupper. Very docile. Attracts marshmallows. Hurts to pet but definitely worth it 8/10 https://t.co/jjW7zTxY9Z 1 This is Caryl. Likes to get in the microwave. 9/10 damn it Caryl https://t.co/YAVwvNaois 1 Meet Brooks. He's confused by the almighty ball of tennis. 12/10 \n\n(vid by @PDolan37) https://t.co/AcVWe39nmM 1 My oh my. This is a rare blond Canadian terrier on wheels. Only $8.98. Rather docile. 9/10 very rare https://t.co/yWBqbrzy8O 1 Meet Vincent. He's a wild Adderall Cayenne. Shipped for free. Always fresh. Never frozen. 10/10 great purchase https://t.co/ZfS7chSsi7 1 Please stop sending in animals other than dogs. We only rate dogs. Not Furry Ecuadorian Sea Turtles. Thank you... 12/10 https://t.co/UOE79zb6VU 1 This is Alexander Hamilpup. He was one of the many stars in this year's Puppy Bowl. He just hopes both teams had fun. 12/10 https://t.co/JcTuUcyYNS 1 RT @dog_rates: This is Timison. He just told an awful joke but is still hanging on to the hope that you'll laugh with him. 10/10 https://t.… 1 This is Scooter. His lack of opposable thumbs is rendering his resistance to tickling embarrassingly moot. 12/10 would keep tickling https://t.co/F0VWg2GztI 1 It's okay pup. This happens every time I listen to @adele also. 11/10 (vid by @_larirutschmann) https://t.co/oCImpQuoRb 1 This is Tedrick. He lives on the edge. Needs someone to hit the gas tho. Other than that he's a baller. 10&2/10 https://t.co/LvP1TTYSCN 1 This is Milo. I would do terrible things for Milo. 13/10 https://t.co/R6wJyC2Tey 1 This is Sprinkles. He's trapped in light jail. 10/10 would post bail for him https://t.co/4s5Xlijogu 1 Here we have a Hufflepuff. Loves vest. Eyes wide af. Flaccid tail. Matches carpet. Always a little blurry. 8/10 https://t.co/7JdgVqDnvR 1 This is Comet. He's a Wild Estonian Poofer. Surprised they caught him. 12/10 would pet well https://t.co/tlfuZ25IMi 1 This is Clybe. He is an Anemone Valdez. One ear works. Can look in 2 different directions at once. Tongue slip. 7/10 https://t.co/Ks0jZtdIrr 1 RT @dog_rates: This is Dawn. She's just checking pup on you. Making sure you're doing okay. 12/10 she's here if you need her https://t.co/X… 1 When you try to recreate the scene from Lady & The Tramp but then remember you don't have a significant other. 10/10 https://t.co/TASnD8Q08S 1 Meet Sadie. She fell asleep on the beach and her friends buried her. 10/10 can't trust fellow puppers these days https://t.co/LoKVvc1xAW 1 RT @dog_rates: This is Colby. He's currently regretting all those times he shook your hand for an extra treat. 12/10 https://t.co/vtVHtKFtBH 1 This is the saddest/sweetest/best picture I've been sent. 12/10 😢🐶 https://t.co/vQ2Lw1BLBF 1 This is Frank (pronounced "Fronq"). Too many boxing gloves, not enough passion. Frank is a lover not a fighter. 8/10 https://t.co/CpPxD28IpV 1 This is Coco. At first I thought she was a cloud but clouds don't bork with such passion. 12/10 would hug softly https://t.co/W86h5dgR6c 1 This is Blu. He's a wild bush Floofer. I wish anything made me as happy as bushes make Blu. 12/10 would frolic with https://t.co/HHUAnBb6QB 1 This is Rumble, but he's not ready to. Would rather fall asleep in his bath bucket. 13/10 would attempt a boop without waking https://t.co/MVQCzrF1g9 1 Here's a doggo questioning his entire existence. 10/10 someone tell him he's a good boy https://t.co/dVm5Hgdpeb 1 Meet Roosevelt. He's calculating the best case scenario if he drops out instead of doing math hw. 11/10 relatable af https://t.co/QcSIRDpfVg 1 This is Chester. He's been guarding this pumpkin since October. Dedicated af. Hat is nifty as hell. 12/10 would snug https://t.co/CFMjsn3P6B 1 This is Kaia. She's just cute as hell. 12/10 I'd kill for Kaia https://t.co/5fMdH8GFaq 1 This is Apollo. He thought you weren't coming back so he had a mental breakdown. 8/10 we've all been there https://t.co/ojUBrDCHLT 1 Atlas is back and this time he's prettier than the sunset. Seems to be aware of it too. 13/10 would give modeling contract https://t.co/uRdKlFArQE 1 RT @dog_rates: This is Stubert. He just arrived. 10/10 https://t.co/HVGs5aAKAn 1 RT @dog_rates: Meet Hurley. He's the curly one. He hugs every other dog he sees during his walk. 11/10 for spreading the love https://t.co/… 1 Never forget this vine. You will not stop watching for at least 15 minutes. This is the second coveted.. 13/10 https://t.co/roqIxCvEB3 1 Oh. My. God. 13/10 magical af https://t.co/Ezu6jQrKAZ 1 RT @dog_rates: This is Phil. He's an important dog. Can control the seasons. Magical as hell. 12/10 would let him sign my forehead https://… 1 Say hello to Mauve and Murphy. They're rather h*ckin filthy. Preferred nap over bath. Both 12/10 https://t.co/4UwCTW3lXG 1 This is Colby. He's currently regretting all those times he shook your hand for an extra treat. 12/10 https://t.co/vtVHtKFtBH 1 Meet Brody. He's a Downton Abbey Falsetto. Addicted to grating cheese. He says he can stop but we know he can't\n9/10 https://t.co/vBeiQq6SaZ 1 Here we are witnessing five Guatemalan Birch Floofs in their natural habitat. All 12/10 (Vid by @pootdanielle) https://t.co/rb8nzVNh7F 1 This is a golden Buckminsterfullerene named Johm. Drives trucks. Lumberjack (?). Enjoys wall. 8/10 would hug softly https://t.co/uQbZJM2DQB 1 This is Skittles. I would kidnap Skittles. Pink dog in back hasn't moved in days. 12/10 https://t.co/2wm0POA9N2 1 Everybody stop what you're doing and look at this dog with her tiny Santa hat. 13/10 https://t.co/KK4XQK9SPi 1 This is Klevin. He laughs a lot. Very cool dog. 9/10 https://t.co/bATAbPNv0m 1 This is a Helvetica Listerine named Rufus. This time Rufus will be ready for the UPS guy. He'll never expect it 9/10 https://t.co/34OhVhMkVr 1 This pup holds the secrets of the universe in his left eye. 12/10 https://t.co/F7xwE0wmnu 1 This is Ike. He's demonstrating the pupmost restraint. 13/10 super good boy https://t.co/6gHoGah9nm 1 Stop what you're doing and watch this heckin masterpiece right here. Both 13/10 https://t.co/3BOVI2WZoH 1 Meet Daisy. She's rebellious. Full of teen angst. Thought her food should be evenly dispersed around the room. 12/10 https://t.co/8yzgYzP94K 1 RT @frasercampbell_: oh my... what's that... beautiful scarf around your neck... 14/10 a h*ckin good dog in a h*ckin good game @GoodDogsGam… 1 This pupper is patiently waiting to scare the shit out of Santa. 10/10 https://t.co/NhXo67K6yt 1 RT @eddie_coe98: Thanks @dog_rates completed my laptop. 10/10 would buy again https://t.co/bO0rThDlXI 1 Pwease accept dis rose on behalf of dog. 11/10 https://t.co/az5BVcIV5I 1 This is Archie. He's undercover in all these pics. Not actually a bee, cow, or Hawaiian. Sneaky af. 12/10 https://t.co/9fojElzIxx 1 RT @dog_rates: This is Oliver. He has dreams of being a service puppo so he can help his owner. 13/10 selfless af\n\nmake it happen:\nhttps://… 1 This is Shiloh. She did not pass the soft mouth egg test. 10/10 would absolutely still pet https://t.co/PlR6hjqvr5 1 This is Arnie. He's a Nova Scotian Fridge Floof. Rare af. 12/10 https://t.co/lprdOylVpS 1 This is Jimothy. He is a Botwanian Gouda. Can write (impressive). Very erect tail. Still looking for hoco date. 9/10 https://t.co/LEkZjZxESQ 1 This is Farfle. He lost his back legs during the Battle of Gettysburg. Goes 0-60 in 4.3 seconds (damn) 12/10 hero af https://t.co/NiQQWzIzzq 1 This is Frönq. He got caught stealing a waffle. Damn it Frönq. 9/10 https://t.co/7ycWCUrjmZ 1 This is Longfellow (prolly sophisticated). He's a North Appalachian Oatzenjammer. Concerned about wrinkled feets. 12/10 would hug softly https://t.co/bpLuQuxzHZ 1 Meet Fillup. Spaghetti is his main weakness. Also pissed because he's rewarded with cat treats 11/10 it'll be ok pup https://t.co/TEHu55ZQKD 1 What jokester sent in a pic without a dog in it? This is not @rock_rates. This is @dog_rates. Thank you ...10/10 https://t.co/nDPaYHrtNX 1 I want to hear the joke this dog was just told. 10/10 https://t.co/1KiuZqqOD4 1 This is Stephanus. She stays woke. 12/10 https://t.co/WIWabMngQZ 1 This is a northern Wahoo named Kohl. He runs this town. Chases tumbleweeds. Draws gun wicked fast. 11/10 legendary https://t.co/J4vn2rOYFk 1 This is Fiji. She's a Powdered Stegafloof. Very rare. 12/10 https://t.co/fZRob6eotY 1 This is Cooper. He doesn't know how cheese works. Likes the way it feels on his face. Cheeky tongue slip. 11/10 https://t.co/j1zczS0lI5 1 This is Ferg. He swallowed a chainsaw. 1 like = 1 prayer 10/10 remain calm Ferg (vid by @calebturer) https://t.co/gOH51Y8Yh1 1 This is Penny. She fought a bee and the bee won. 10/10 you're fine Penny, everything's fine https://t.co/zrMVdfFej6 1 This is a fluffy albino Bacardi Columbia mix. Excellent at the tweets. 11/10 would hug gently https://t.co/diboDRUuEI 1 Really guys? Again? I know this is a rare Albanian Bingo Seal, but we only rate dogs. Only send in dogs... 9/10 https://t.co/6JYLpUmBrC 1 This is Jimison. He's stuck in a pot. Damn it Jimison. 9/10 https://t.co/KpLyca3o3E 1 After reading the comments I may have overestimated this pup. Downgraded to a 1/10. Please forgive me 1 My goodness. Very rare dog here. Large. Tail dangerous. Kinda fat. Only eats leaves. Doesn't come when called 3/10 https://t.co/xYGdBrMS9h 1 This is Misty. She's in a predicament. Not sure what next move should be. 9/10 stay calm pupper I'm comin https://t.co/XhR7PAgcwF 1 Here's a doggo doin a struggle. 11/10 much determined https://t.co/gQqRBfkX4I 1 Meet Lola. Her hobbies include being precious af and using her foot as a toothbrush. 12/10 Lola requests your help\n\nhttps://t.co/FYFyHh7rir https://t.co/IiB7ggduoU 1 This dog just brutally murdered a snowman. Currently toying with its nutritious remains 9/10 would totally still pet https://t.co/iKThgKnW1j 1 RT @dog_rates: This is Butter. She can have whatever she wants forever. 12/10 would hug softly https://t.co/x5gXRS1abq 1 This is Dash. He's very stylish, but also incredibly unimpressed with the current state of our nation. 10/10 would pet ears first https://t.co/YElO4hvXI6 1 This is Lincoln. He doesn't understand his new jacket. 11/10 please enjoy (vid by @GraceIsTheName8) https://t.co/S6cQsIoX27 1 This is an extremely rare horned Parthenon. Not amused. Wears shoes. Overall very nice. 9/10 would pet aggressively https://t.co/QpRjllzWAL 1 .@breaannanicolee PUPDATE: Cannon has a heart on his nose. Pupgraded to a 13/10 1 Two obedient dogs here. Left one has extra leg sticking out of its back. They each get 9/10. Would pet both at once https://t.co/RGcNPsmAfY 1 This is Olaf. He's gotta be rare. Seems sturdy. Tail is floofy af. 12/10 would do whatever it takes to pet https://t.co/E9jaU59bh9 1 This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU 1 This is Atlas. Swinging is his passion. 12/10 would push all day https://t.co/9k8LLjJ0uJ 1 This is Cleopatricia. She is a northern Paperback Maple. Set up hammock somehow. 9/10 would chill in hammock with https://t.co/sJeHdGUt0W 1 Fun dogs here. Top one clearly an athlete. Bottom one very stable. Not very soft tho. 9/10s would still cuddle both https://t.co/79sHR36NsI 1 This is Blitz. He's a new dad struggling to cope mentally with the pressures of being a father. Sick shades 10/10 https://t.co/2AVcJ2BZsy 1 This is Julius. He's a cool dog. Carries seashell everywhere. Rad segmented legs. Currently attacking castle. 8/10 https://t.co/CwUK5AIgeD 1 Meet Pippa. She's an Elfin High Feta. Compact af. Easy to transport. Great for vacations. 10/10 would keep in pocket https://t.co/nBtDeZ4yAb 1 When you stumble but recover quickly cause your crush is watching. 12/10 https://t.co/PMeq6IedU7 1 This is Stephan. He just wants to help. 13/10 such a good boy https://t.co/DkBYaCAg2d 1 HAPPY V-DAY FROM YOUR FAV PUPPER SQUAD 13/10 for all https://t.co/7u6VnZ1UFe 1 Say hello to Oliver. He's pretty exotic. Fairly pupset as well. Too many midterms coming pup. 11/10 would pet with extreme caution https://t.co/fGAPAsxjKs 1 This is Dash. He didn't think the water would be that cold. Damn it Dash it's December. Think a little. 10/10 https://t.co/NqcOwG8pxW 1 This is Bailey. She likes flowers. 12/10 https://t.co/YBENhr24FV 1 This is Louie. He's had a long day. Did a lot of pupper things. Also appears to be rather heckin pettable. 11/10 https://t.co/w2qDmoTIZ5 1 This is a wild Toblerone from Papua New Guinea. Mouth always open. Addicted to hay. Acts blind. 7/10 handsome dog https://t.co/IGmVbz07tZ 1 RT @dog_rates: This is Chompsky. He lives up to his name. 11/10 https://t.co/Xl37lQEWd0 1 ER... MER... GERD 13/10 https://t.co/L1puJISV1a 1 Sneaky dog here. Tuba player has no clue. 10/10 super sneaky https://t.co/jWVwSppaa2 1 Meet Otis. He is a Peruvian Quartzite. Pic sponsored by Planters. Ears on point. Killer sunglasses. 10/10 ily Otis https://t.co/tIaaBIMlJN 1 This is Doug. He's trying to float away. 12/10 you got this Doug https://t.co/bZaHC3lvTL 1 Here's a doggo blowing bubbles. It's downright legendary. 13/10 would watch on repeat forever (vid by Kent Duryee) https://t.co/YcXgHfp1EC 1 Meet Laela. She's adorable. Magnificent eyes. But I don't see a seat belt. Insubordinate.. and churlish. Still 12/10 https://t.co/pCGDgLkLo6 1 Meet Odin. He's supposed to be giving directions but he'd rather look at u like that. Should probably buckle pup. 12/10 distracting as h*ck https://t.co/1pSqUbLQ5Z 1 Vibrant dog here. Fabulous tail. Only 2 legs tho. Has wings but can barely fly (lame). Rather elusive. 5/10 okay pup https://t.co/cixC0M3P1e 1 Meet Jax. He enjoys ice cream so much he gets nervous around it. 13/10 help Jax enjoy more things by clicking below\n\nhttps://t.co/Zr4hWfAs1H https://t.co/tVJBRMnhxl 1 This is Yukon. He pukes rainbows. 12/10 magical af https://t.co/n6wND1v7il 1 This is the happiest pupper I've ever seen. 10/10 would trade lives with https://t.co/ep8ATEJwRb 1 Meet Olive. He comes to spot by tree to reminisce of simpler times and truly admire his place in the universe. 11/10 https://t.co/LwrCwlWwPB 1 This is Bodie. He's not proud of what he did, but it needed to be done. 9/10 eight days was a pretty good streak tbh https://t.co/bpZsGMqVVP 1 Meet Aqua. She's a sandy pupper. Not sure how she feels about being so sandy. Radical tongue slip. 11/10 petable af https://t.co/rYxJ0UQtbE 1 RT @dog_rates: Meet Gerald. He's a fairly exotic doggo. Floofy af. Inadequate knees tho. Self conscious about large forehead. 8/10 https://… 1 Meet Grady. He's very hungry. Too bad no one can find his food bowl. 9/10 poor pupper https://t.co/oToIkYnEGn 1 Meet Malikai. He was rolling around having fun when he remembered the inevitable heat death of the universe. 10/10 https://t.co/Vd2FqHIIGn 1 This is Charleson. He lost his plunger. Looked everywhere. Can't find it. So sad. 9/10 would comfort https://t.co/pRHX8yn9Yu 1 Meet Harold. He's h*ckin cooperative. 13/10 good work Harold https://t.co/ZYg3NZGICa 1 Meet Charlie. She asked u to change the channel to Animal Planet at least 6 times. Now taking matters into her own paws. 13/10 assertive af https://t.co/WTzhtfevKY 1 Fascinating dog here. Loves beach. Oddly long nose for dog. Massive ass paws. Hard to cuddle w. 3/10 would still pet https://t.co/IiSdmhkC5N 1 This is Chloe. She fell asleep at the wheel. Absolute menace on the roadways. Sneaky tongue slip tho. 11/10 https://t.co/r6SLVN2VUH 1 RT @dog_rates: This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wu… 1 This is Leo. He's a vape god. Blows o's for days. Probably drives a Subaru. Definitely owns multiple fedoras. 10/10 https://t.co/nt2x3fHaRJ 1 This is Kara. She's been trying to solve that thing for 3 days. "I don't have thumbs," she said. 11/10 solid effort https://t.co/lA6a8GefrV 1 RT @dog_rates: Meet Beau & Wilbur. Wilbur stole Beau's bed from him. Wilbur now has so much room for activities. 9/10 for both pups https:/… 1 RT @dog_rates: When she says you're a good boy and you know you're a good boy because you're a good boy. 13/10 https://t.co/O5IUmRHRIh 1 This is Gerald. He's a fluffy lil yellow pup. Always looks like his favorite team just lost on a hail mary. 7/10 https://t.co/GpSkpN8kXS 1 Here we have a neat pup. Very white. Cool shades. Upcoming cruise? Great dog 10/10 https://t.co/LEaviT37v1 1 RT @dog_rates: This is Kenny. He just wants to be included in the happenings. 11/10 https://t.co/2S6oye3XqK 1 This is Pilot. He has mastered the synchronized head tilt and sneaky tongue slip. Usually not unlocked until later doggo days. 12/10 https://t.co/YIV8sw8xkh 1 This is Simba. He's the grand prize. The trophy is just for participation. 12/10 would pet so damn well https://t.co/4qiuC0lXq5 1 This is my dog. Her name is Zoey. She knows I've been rating other dogs. She's not happy. 13/10 no bias at all https://t.co/ep1NkYoiwB 1 This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV 1 This is Superpup. His head isn't proportional to his body. Has yet to serve any justice. 11/10 maybe one day pupper https://t.co/gxIFgg8ktm 1 Oh my. Here you are seeing an Adobe Setter giving birth to twins!!! The world is an amazing place. 11/10 https://t.co/11LvqN4WLq 1 This is Tucker. He's very camera shy. 12/10 would give stellar belly rubs to https://t.co/BJRsxuLF1w 1 This is Anakin. He strives to reach his full doggo potential. Born with blurry tail tho. 11/10 would still pet well https://t.co/9CcBSxCXXG 1 This is Jeph. He is a German Boston Shuttlecock. Enjoys couch. Lost body during French Revolution. True hero 9/10 https://t.co/8whlkYw3mO 1 This is Wally. He's being abducted by aliens. 10/10 poor pupper https://t.co/EiF659Bgjn 1 This is Arya. She can barely contain her excitement for more peanut butter. Also patriotic af. 13/10 https://t.co/AL4Ahm1Rm5 1 RT @dog_rates: Meet Hercules. He can have whatever he wants for the rest of eternity. 12/10 would snug passionately https://t.co/mH0IOyFdIG 1 This is Bertson. He just wants to say hi. 11/10 would boop nose https://t.co/hwv7Wq6gDA 1 Meet Piper. She's an airport doggo. Please return your tray table to its full pupright and locked position. 11/10 https://t.co/D17IAcetmM 1 Say hello to Bisquick. He is a Brown Douglass Fir terrier. Very inbred. Looks terrified. 8/10 still cute tho https://t.co/1XYRh8N00K 1 Say hello to William. He makes fun of others because he's terrified of his own deep-seated insecurities. 7/10 https://t.co/bwuV6FlRxr 1 This is Marley. She chews shoes then feels extremely guilty about it and refuses to look at them. 10/10 https://t.co/f99MV0htAV 1 Say hello to Calbert. He doesn't have enough legs. Wtf Calbert. Still havin a blast tho. 11/10 would pet extra well https://t.co/iNFIHvcVur 1 This is Bradley. That is his sandwich. He carries it everywhere. 10/10 https://t.co/AjBkGTyCeO 1 This is Zeke. He has a new stick. Very proud of it. Would like you to throw it for him without taking it. 13/10 would do my best https://t.co/HTQ77yNQ5K 1 Meet Dave. It's his favorite day of the year. He gets to fulfill his dream of being a dinosaur. 12/10 inspirational af https://t.co/MgQSdfZGPN 1 Here we have perhaps the wisest dog of all. Above average with light sabers. Immortal as h*ck. 14/10 dog, or dog not, there is no try https://t.co/upRYxG4KbG 1 This is Timmy. He's quite large. According to a trusted source it's actually a dog wearing a dog suit. 11/10 https://t.co/BIUchFwHqn 1 This is Kane. He's a semi-submerged Haitian Huffleplop. Happy af. Sick waterfall. 11/10 would pat head approvingly https://t.co/7zjEC501Ul 1 Sharp dog here. Introverted. Loves purple. Not fun to pet. Hurts to cuddle with. 6/10 still good dog tho https://t.co/Dfv2YaHPMn 1 Here is George. George took a selfie of his new man bun and that is downright epic. (Also looks like Rand Paul) 9/10 https://t.co/afRtVsoIIb 1 This is Carl. He just wants to make sure you're having a good day. 12/10 just a swell pup https://t.co/Wk3XCnmDvm 1 After countless hours of research and hundreds of formula alterations we have concluded that Dug should be bumped to an 11/10 1 This is Yogi. He's 98% floof. Snuggable af. 12/10 https://t.co/opoXKxmfFm 1 RT @basic_vacek_: I love my new mug easy 13/10 @dog_rates https://t.co/0bYtoL7Wwt 1 This is Piper. She would really like that tennis ball core. Super sneaky tongue slip. 12/10 precious af https://t.co/QP6GHi5az9 1 This is Gustav. He has claimed that plant. It is his now. 10/10 would not try to take his plant away https://t.co/uRI7HBgGJX 1 These two pups just met and have instantly bonded. Spectacular scene. Mesmerizing af. 10/10 and 7/10 for blue dog https://t.co/gwryaJO4tC 1 We usually don't rate penguins but this one is in need of a confidence boost after that slide. 10/10 https://t.co/qnMJHBxPuo 1 This is Lizzie. She's about to fist bump the large ridable maned pupper. She's very excited. 10/10 for both dogs https://t.co/mFhvtX36om 1 RT @dog_rates: We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 https://t.co/rLi83ZyCL5 1 Meet Ralf. He's a miniature Buick DiCaprio. Can float (whoa). Loves to beach. Snazzy green vest. 11/10 I'd hug Ralf https://t.co/R5Z6jBTdhc 1 Say hello to Winston. He has no respect for the system. Much rebellion. I think that's a palm tree... nice. 8/10 https://t.co/dOLQddhXLZ 1 @ComplicitOwl @ShopWeRateDogs >10/10 is reserved for dogs 1 RT @alexmartindawg: THE DRINK IS DR. PUPPER 10/10 good pun @matt___nelson @GoodDogsGame https://t.co/act3duiqbL 1 Here we have a doggo who has messed up. He was hoping you wouldn't notice. 11/10 someone help him https://t.co/XdRNXNYD4E 1 Meet General. He wasn't content with the quality of his room. Requested to pupgrade, but was ignored. 14/10 look who just lost a customer https://t.co/NP5JW8LnmW 1 This is a Trans Siberian Kellogg named Alfonso. Huge ass eyeballs. Actually Dobby from Harry Potter. 7/10 https://t.co/XpseHBlAAb 1 Here we see a rare pouched pupper. Ample storage space. Looks alert. Jumps at random. Kicked open that door. 8/10 https://t.co/mqvaxleHRz 1 Say hello to Opie and Clarkus. Clarkus fell asleep so Opie buried him. Ruthless af 10/10 for both https://t.co/xT7XaY4gnW 1 RT @dog_rates: We only rate dogs. Pls stop sending in non-canines like this Mongolian grass snake. This is very frustrating. 11/10 https://… 1 This is Howie. He just bloomed. 11/10 revolutionary af https://t.co/m5fYxrO3IU 1 SWIM AWAY PUPPER SWIM AWAY 13/10 #BarkWeek https://t.co/QGGhZoTcwy 1 Meet Chester (bottom) & Harold (top). They are different dogs not only in appearance, but in personality as well. Both 12/10 symbiotic af https://t.co/8ZOZS2FSJe 1 This is Anthony. He just finished up his masters at Harvard. Unprofessional tattoos. Always looks perturbed. 5/10 https://t.co/iHLo9rGay1 1 This is Dook & Milo. Dook is struggling to find who he really is and Milo is terrified of what that might be. 8/10s https://t.co/fh5KflzBR0 1 Meet Karma. She's just a head. Lost body during the Second Punic War (unfortunate). Loves to travel 10/10 petable af https://t.co/c6af6nYEPo 1 10/10 I'd follow this dog into battle no questions asked https://t.co/ngTNXYQF0L 1 This is Kaiya. She's an aspiring shoe model. 12/10 follow your dreams pupper https://t.co/nX8FiGRHvk 1 Sometimes you guys remind me just how impactful a pupper can be. Cooper will be remembered as a good boy by so many. 14/10 rest easy friend https://t.co/oBL7LEJEzR 1 We normally don't rate lobsters, but this one appears to be a really good lobster. 10/10 would pet with caution https://t.co/YkHc7U7uUy 1 This is Sailor. He has collected the best dirt in the area. As any good boy would. Under the impression you know what to do next. 12/10 https://t.co/jrFzScKWEG 1 This is Lola. She was not fully prepared for the water slide. 9/10 https://t.co/svlkUlg3NH 1 I don't know any of the backstory behind this picture but for some reason I'm crying. 13/10 for owner and doggo https://t.co/QOKZdus9TT 1 Watch out Airbud. This pupper is also good at the sports. 12/10 I'm thinking D1 https://t.co/1HrFdo7M0C 1 This is Leo. He's a golden chow. Rather h*ckin rare. 13/10 would give extra pats https://t.co/xosHjFzVXc 1 Here is a perfect example of someone who has their priorities in order. 13/10 for both owner and Forrest https://t.co/LRyMrU7Wfq 1 Say hello to Sunny and Roxy. They pull things out of water together. 10/10 for both https://t.co/88aedAmxcl 1 Meet Gerald. He's a fairly exotic doggo. Floofy af. Inadequate knees tho. Self conscious about large forehead. 8/10 https://t.co/WmczvjCWJq 1 RT @dog_rates: In case you haven't seen the most dramatic sneeze ever... 13/10 https://t.co/iy7ylyZcsE 1 This is Maximus. His face is stuck like that. Tragic really. Great tongue tho. 12/10 would pet firmly https://t.co/xIfrsMNLBR 1 Nothin better than a doggo and a sunset. 11/10 https://t.co/JlFqOhrHEs 1 This is Billl. He's trying to be a ghost but he's not very good at it. 6/10 c'mon Billl https://t.co/ero0XfdGtY 1 This is Ruffles. He is an Albanian Shoop Da Whoop. He just noticed the camera. Patriotic af. Classy hardwood. 11/10 https://t.co/HyDpTU5Jhj 1 This is quite the dog. Gets really excited when not in water. Not very soft tho. Bad at fetch. Can't do tricks. 2/10 https://t.co/aMCTNWO94t 1 This is Maxaroni. He's pumped as hell for the summer. Been working on his beach bod for so long. 10/10 https://t.co/UHvjxm9B0O 1 Say hello to Kallie. There was a tornado in the area & the news guy said everyone should wear a helmet. 10/10 adorbz https://t.co/AGyogHtmXx 1 This is a Dasani Kingfisher from Maine. His name is Daryl. Daryl doesn't like being swallowed by a panda. 8/10 https://t.co/jpaeu6LNmW 1 This pup was carefully tossed to make it look like she's riding that horse. I have no words this is fabulous. 12/10 https://t.co/Bob33W4sfD 1 This is actually a lion. We only rate dogs. For the last time please only send dogs. Thank u.\n12/10 would still pet https://t.co/Pp26dMQxap 1 Meet Hank and Sully. Hank is very proud of the pumpkin they found and Sully doesn't give a shit. 11/10 and 8/10 https://t.co/cwoP1ftbrj 1 Another spooky pupper here. Most definitely floating. No legs. Probably knows some dark magic. 10/10 very spooked https://t.co/JK8MByRzgj 1 This is Tucker. He's feeling h*ckin festive and his owners don't have the heart to tell him Christmas is over. 12/10 https://t.co/zqR5XKMpuY 1 Unfamiliar with this breed. Ears pointy af. Won't let go of seashell. Won't eat kibble. Not very fast. Bad dog 2/10 https://t.co/EIn5kElY1S 1 Two gorgeous pups here. Both have cute fake horns(adorable). Barn in the back looks on fire. 5/10 would pet rly well https://t.co/w5oYFXi0uh 1 Meet Venti, a seemingly caffeinated puppoccino. She was just informed the weekend would include walks, pats and scritches. 13/10 much excite https://t.co/ejExJFq3ek 1 This is a Shotokon Macadamia mix named Cheryl. Sophisticated af. Looks like a disappointed librarian. Shh (lol) 9/10 https://t.co/J4GnJ5Swba 1 This is Doc. He requested to be carried around like that. 12/10 anything for Doc https://t.co/mWYACm4qnx 1 This is Belle. She's a Butterflop Hufflepoof. Rarer than most. Having trouble with car seat. 10/10 perturbed af https://t.co/VIXT3D26VM 1 RT @dog_rates: This is Rubio. He has too much skin. 11/10 https://t.co/NLOHmlENag 1 This is Cooper. He tries to come across as feisty but it never works for very long. 12/10 https://t.co/AVks8DjHwB 1 This is Ralphie. He's being treated for an overactive funny bone, which is no joke. 12/10 would try to pet with a straight face https://t.co/UU3KqQF5n5 1 Say hello to Gizmo. He's upset because he's not sure if he's really big or the shopping cart is really small. 7/10 https://t.co/XkMtCGhr4a 1 RT @dog_rates: This is Balto. He's very content. Legendary tongue slippage. 12/10 would pet forever https://t.co/T7Jr4Gw4sC 1 This is Kendall. 12/10 would cuddle the hell out of https://t.co/fJulMurnfj 1 RT @dog_rates: This is Davey. He'll have your daughter home by 8. Just a stand up pup. 11/10 would introduce to mom https://t.co/E6bGWf9EOm 1 This is Winnie. She's not a fan of the fast moving air. 11/10 objects in mirror may be more fluffy than they appear https://t.co/FyHrk20gUR 1 Nothing better than a doggo and a sunset. 10/10 majestic af https://t.co/xVSodF19PS 1 This is Pinot. He's a sophisticated doggo. You can tell by the hat. Also pointier than your average pupper. Still 10/10 would pet cautiously https://t.co/f2wmLZTPHd 1 This is Carl. He's very powerful. 12/10 don't mess with Carl https://t.co/v5m2bIukXc 1 I'll name the dogs from now on. This is Kreggory. He does parkour. 10/10 https://t.co/uPqPeXAcua 1 This is Beemo. He's a Chubberflop mix. 12/10 would cross the world for https://t.co/kzMVMU8HBV 1 This pup is sad bc he didn't get to be the toy car. Also he has shitty money management skills. 10/10 still cute tho https://t.co/PiSXXZjDSJ 1 Say hello to Mimosa. She's an emotional support doggo who helps her owner with PTSD. 13/10, but she needs your help\n\nhttps://t.co/L6mLzrd7Mx https://t.co/jMutBFdw5o 1 Ugh not again. We only rate dogs. Please don't send in well-dressed floppy-tongued street penguins. Dogs only please. Thank you... 12/10 https://t.co/WiAMbTkDPf 1 Meet Glenn. Being in public scares him. Frighteningly relatable. 12/10 keep hangin in there Glenn (Imgur - Wuhahha) https://t.co/pA4MDKwRci 1 This is Batdog. He's sleeping now but when he wakes up he'll fight crime and such. Great tongue. 11/10 for Batdog https://t.co/Clg16EVy9O 1 Meet BeBe. She rocks the messy bun of your dreams. H*ckin flawless. 12/10 would watch her tutorial https://t.co/of0pFNBIl8 1 Say hello to Chuq. He just wants to fit in. 11/10 https://t.co/hGkMCjZzn4 1 This is Wesley. He's clearly trespassing. Seems rather h*ckin violent too. Weaponized forehead. 3/10 wouldn't let in https://t.co/pL7wbMRW7M 1 This golden is happy to refute the soft mouth egg test. Not a fan of sweeping generalizations. 11/10 #notallpuppers https://t.co/DgXYBDMM3E 1 This is an Irish Rigatoni terrier named Berta. Completely made of rope. No eyes. Quite large. Loves to dance. 10/10 https://t.co/EM5fDykrJg 1 When you see sophomores in high school driving. 11/10 https://t.co/m6aC8d1Kzp 1 This is Dave. He's a tropical pup. Short lil legs (dachshund mix?) Excels underwater, but refuses to eat kibble 5/10 https://t.co/ZJnCxlIf62 1 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10 https://t.co/MTOOksRzvH 1 Say hello to Kenneth. He likes Reese's Puffs. 10/10 https://t.co/6RHNRsByOY 1 Very fit horned dog here. Looks powerful. Not phased by wind. Great beard. Big enough to ride? 6/10 would cuddle https://t.co/wwwYO9C9kl 1 This is Rolf. He's having the time of his life. 11/10 good pupper https://t.co/OO6MqEbqG3 1 Meet Kayla, an underground poker legend. Players lose on purpose hoping she'll let them pet her. 10/10 strategic af https://t.co/EkLku795aO 1 Say hello to Emmie. She's trapped in an ornament. Tragic af. Looks pretty content tho. Maybe it's meant to be. 9/10 https://t.co/Fh7geodBCU 1 This is Barclay. His father was a banana. 11/10 appeeling af https://t.co/ucOEfr2rjV 1 This is Lennon. He's a Boopershnoop Pupperdoop. Quite rare. Exceptionally pettable. 12/10 would definitely boop that shnoop https://t.co/fhgP6vSfhX 1 This is Keith. He's had 13 DUIs. 7/10 that's too many Keith https://t.co/fa7olwrF9Y 1 This is Karll. He just wants to go kayaking. 10/10 please someone take Karll kayaking already https://t.co/vXLkvyNQHp 1 This is Gabe. He was the unequivocal embodiment of a dream meme, but also one h*ck of a pupper. You will be missed by so many. 14/10 RIP https://t.co/M3hZGadUuO 1 Meet Tucker. It's his birthday. He's pupset with you because you're too busy playing @GoodDogsGame to celebrate. 13/10 would put down phone https://t.co/vrppizPGdb 1 12/10 simply brilliant pup https://t.co/V6ZzG45zzG 1 This is Buddy. He's photogenic af. Loves to sexily exit pond. Very striped. Comes with shield. 8/10 would pet well https://t.co/mYhQvAdV4f 1 Meet Tassy & Bee. Tassy is pretty chill, but Bee is convinced the Ruffles are haunted. 10/10 & 11/10 respectively https://t.co/fgORpmTN9C 1 I'm not sure what's happening here, but it's pretty spectacular. 12/10 for both https://t.co/JKXh0NbBNL 1 This is O'Malley. That is how he sleeps. Doesn't care what you think about it. 10/10 comfy af https://t.co/Pq150LeRaC 1 This is Cedrick. He's a spookster. Did me a discomfort. 10/10 would pet with a purpose https://t.co/yS7T4gxKod 1 This is Penny. She's a sailor pup. 11/10 would take to the open seas with https://t.co/0rRxyBQt32 1 This may be the greatest video I've ever been sent. 4/10 for Charles the puppy, 13/10 overall. (Vid by @stevenxx_) https://t.co/uaJmNgXR2P 1 Say hello to Ted. He accidentally opened the front facing camera. 11/10 h*ckin unpupared https://t.co/sIB5C6FDop 1 This is Jockson. He is a Pinnacle Sagittarius. Fancy bandana. Enjoys lightly sucking on hot dog in nature. 8/10 https://t.co/RdKbAOEpDK 1 SHE DID AN ICY ZOOM AND KNEW WHEN TO PUT ON THE BRAKES 13/10 CANCEL THE GAME THIS IS ALL WE NEED https://t.co/4ctgpGcqAd 1 This is Daisy. She's here to make your day better. 13/10 mission h*ckin successful https://t.co/PbgvuD0qIL 1 RT @dog_rates: This is Loki. He smiles like Elvis. Ain't nothin but a hound doggo. 12/10 https://t.co/QV5nx6otZR 1 When it's Janet from accounting's birthday but you can't eat the cake cuz it's chocolate. 10/10 hang in there pupper https://t.co/Fbdr5orUrJ 1 This dog resembles a baked potato. Bed looks uncomfortable. No tail. Comes with butter tho. 3/10 petting still fun https://t.co/x89NSCEZCq 1 This is Vince. He's a Gregorian Flapjeck. White spot on legs almost looks like another dog (whoa). 9/10 rad as hell https://t.co/aczGAV2dK4 1 I didn't believe it at first but now I can see that voter fraud is a serious h*ckin issue. 11/10 https://t.co/7i0bDMbrVN 1 Here we have an entire platoon of puppers. Total score: 88/80 would pet all at once https://t.co/y93p6FLvVw 1 RT @dog_rates: This is Tucker. He would like a hug. 13/10 someone hug him https://t.co/wdgY9oHPrT 1 I was going to do 007/10, but the joke wasn't worth the <10 rating 1 RT @dog_rates: Ever seen a dog pet another dog? Both 13/10 truly an awe-inspiring scene. (Vid by @mdougherty20) https://t.co/3PoKf6cw7f 1 I'm getting super heckin frustrated with you all sending in non canines like this ostrich. We only rate dogs... 9/10 https://t.co/Rgbni2Ns8z 1 Say hello to Maggie. She's a Western Septic Downy. Pretends to be Mexican. Great hardwood flooring. 9/10 https://t.co/P3ElQ2wsjb 1 This is Cooper. Someone attacked him with a sharpie. Poor pupper. 11/10 nifty tongue slip tho https://t.co/01vpuRDXQ8 1 Ohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboy. 10/10 for all (by happytailsresort) https://t.co/EY8kEFuzK7 1 This is Grizzie. She's a semi-submerged Bahraini Buttersplotch. Appears alert af. Snazzy tongue. 11/10 would def pet https://t.co/WZ4zzkXXnW 1 Meet Watson. He's a Suzuki Tickleboop. Leader of a notorious biker gang. Only one ear functional. 12/10 snuggable af https://t.co/R1gLc5vDqG 1 Say hello to Jack (pronounced "Kevin"). He's a Virgo Episcopalian. Can summon rainbows. 11/10 magical as hell https://t.co/YHXrdUTHd6 1 This is Walter. He is an Alaskan Terrapin. Loves outdated bandanas. One ear still working. Cool house plant. 10/10 https://t.co/qXpcwENTvn 1 13/10 I can't stop watching this (vid by @k8lynwright) https://t.co/nZhhMRr5Hp 1 The floofs have been released I repeat the floofs have been released. 84/70 https://t.co/NIYC820tmd 1 This is Finnegus. He's trapped in a snow globe. Poor pupper. 10/10 would make sure no one shook it https://t.co/BjpOa52jQ4 1 We only rate dogs. Please don't send perfectly toasted marshmallows attempting to drive. Thank you... 13/10 https://t.co/nvZyyrp0kd 1 "Good afternoon class today we're going to learn what makes a good boy so good" 13/10 https://t.co/f1h2Fsalv9 1 This is Shaggy. He knows exactly how to solve the puzzle but can't talk. All he wants to do is help. 10/10 great guy https://t.co/SBmWbfAg6X 1 HE WAS DOING A SNOOZE NO SHAME IN A SNOOZE 13/10 https://t.co/Gu5wHx3CBd 1 This is Acro. You briefly see her out of the corner of your eye. You look and she's not there. 10/10 mysterious pup https://t.co/fqiEsTduEs 1 This is Meyer. He has to hold somebody's hand during car rides. He's also wearing a seatbelt. 12/10 responsible af https://t.co/WS6BoApYyL 1 This is Creg. You offered him a ride to work but you're late and you just missed his exit. 8/10 https://t.co/3r7wznfuoa 1 This is Hammond. He's a peculiar pup. Loves long walks. Bark barely audible. Too many legs. 3/10 must be rare https://t.co/NOIiRWr5Jf 1 Say hello to Eugene & Patti Melt. No matter how dysfunctional they get, they will never top their owners. Both 12/10 would pet at same time https://t.co/jQUdvtdYMu 1 This is Daisy. She has a heart on her butt. 13/10 topical af https://t.co/u6p4LxzHKg 1 This is Penny. She's a dragon slayer. Feared by most, if not all, dragons. Showing off her latest victim here. 12/10 would pet with caution https://t.co/qUOijSlPnj 1 This is Jeffri. He's a speckled ice pupper. Very lazy. Enjoys the occasional swim. Rather majestic really. 7/10 https://t.co/0iyItbtkr8 1 This is Thumas. He hates potted plants. 8/10 wtf Thumas https://t.co/rDVueNIcEi 1 This is Rory. He's extremely impatient. 11/10 settle down pupper https://t.co/e3tfXJLi40 1 "To bone or not to bone?"\n10/10 https://t.co/4g5kFdxp6g 1 And finally, happy 4th of July from the squad 🇺🇸 13/10 for all https://t.co/Mr8Lr3iOUe 1 Say hello to Gin & Tonic. They're having a staring contest. Very very intense. 9/10 for both https://t.co/F6bI9dF16E 1 Happy Wednesday here's a pup wearing a beret. 12/10 please enjoy https://t.co/MXedEzSHIf 1 RT @dog_rates: This is Bo. He was a very good First Doggo. 14/10 would be an absolute honor to pet https://t.co/AdPKrI8BZ1 1 RT @dog_rates: This is Bo and Ty. Bo eats paper and Ty felt left out. 11/10 for both https://t.co/1acHQS8rvK 1 This is Pawnd... James Pawnd. He's suave af. 13/10 would trust with my life https://t.co/YprN62Z74I 1 This is Olive. He's stuck in a sleeve. 9/10 damn it Olive https://t.co/NnLjg6BgyF 1 This is Lucy. She's a Benebop Cumberplop. 12/10 would hold against my face https://t.co/4yXa801fgl 1 This is DonDon. He's way up but doesn't feel blessed. Rather uncomfortable actually. 12/10 I'll save you DonDon https://t.co/OCYLz3fjVE 1 This is Iggy. He was a rescue dog killed in the Stockholm attack. His memorial started with a collar and four bones. It's grown a bit. 14/10 https://t.co/E4a0R9my1M 1 This is Traviss. He has no ears. Two rare dogs in background. I bet they all get along nicely. 7/10s I'd pet all https://t.co/Viu56hVhhP 1 "Please, no puparazzi" 11/10 https://t.co/nJIXSPfedK 1 Here's a doggo who looks like he's about to give you a list of mythical ingredients to go collect for his potion. 11/10 would obey https://t.co/8SiwKDlRcl 1 Like father (doggo), like son (pupper). Both 12/10 https://t.co/pG2inLaOda 1 This is Blitz. He screams. 10/10 (vid by @yeaahliv) https://t.co/MfW2aym5UF 1 This is Alf. Someone just rubbed a balloon on his head. He's only a little pupset about it. 12/10 would pet well https://t.co/IOdgfnSE9G 1 This is Bo. He's a Benedoop Cumbersnatch. Seems frustrated with own feet. Portable as hell. 11/10 very solid pupper https://t.co/TONMhRoQh7 1 RT @dog_rates: This is Pipsy. He is a fluffball. Enjoys traveling the sea & getting tangled in leash. 12/10 I would kill for Pipsy https://… 1 This is Cooper. He likes to stick his tongue out at you and then laugh about it. 12/10 quite the jokester https://t.co/O9iGgvfuzl 1 This is Fwed. He is a Canadian Asian Taylormade. Was having a blast until pink spiky football attacked. 8/10 https://t.co/A37eGLz5WS 1 Happy Friday here's a sleepy pupper 12/10 https://t.co/eBcqv9SPkY 1 RT @dog_rates: Meet Jack. He's one of the rare doggos that doesn't mind baths. 11/10 click the link to see how you can help Jack!\n\nhttps://… 1 RT @dog_rates: I'm not sure what's happening here, but it's pretty spectacular. 12/10 for both https://t.co/JKXh0NbBNL 1 This is Link. He struggles with couches. 10/10 would assist https://t.co/SbX4e6Yg3o 1 This is Tuck. As you can see, he's rather h*ckin rare. Taken seriously until his legs are seen. Tail stuck in a permanent zoom. 13/10 https://t.co/P7PBGqrKSe 1 This is Crystal. She's a shitty fireman. No sense of urgency. People could be dying Crystal. 2/10 just irresponsible https://t.co/rtMtjSl9pz 1 This is Ben & Carson. It's impossible for them to tilt their heads in the same direction. Cheeky wink by Ben. 11/10s https://t.co/465sIBdvzU 1 This is Tebow. He kindly requests that you put down the coffee and play with him. 13/10 such a good boy https://t.co/56uBP28eqw 1 This is Lilly. She just parallel barked. Kindly requests a reward now. 13/10 would pet so well https://t.co/SATN4If5H5 1 This is Reginald. He's pondering what life would be like without so much damn skin. 9/10 it'll be ok buddy https://t.co/1U5Ro5FA4c 1 This is Samson. He patrols his waters on the back of his massive shielded battle dog. 11/10 https://t.co/f8dVgDYDFf 1 Meet Terrance. He's being yelled at because he stapled the wrong stuff together. 11/10 hang in there Terrance https://t.co/ixcuUYCbdD 1 Meet Maggie. She can hear your cells divide. 12/10 can also probably fly https://t.co/ovE2hqXryV 1 This is Otis. He just passed a cop while going 61 in a 45. Very nervous pupper. 7/10 https://t.co/jJS8qQeuNO 1 RT @dog_rates: This is Walter. He won't start hydrotherapy without his favorite floatie. 14/10 keep it pup Walter https://t.co/r28jFx9uyF 1 This is Oliver. He has dreams of being a service puppo so he can help his owner. 13/10 selfless af\n\nmake it happen:\nhttps://t.co/f5WMsx0a9K https://t.co/6lJz0DKZIb 1 Endangered triangular pup here. Could be a wizard. Caught mid-laugh. No legs. Just fluff. Probably a wizard. 9/10 https://t.co/GFVIHIod0Z 1 This is Lucy. She's a Venetian Kerploof. Supposed to be navigating. Quite irresponsible. Fancy ass collar tho 12/10 https://t.co/8tjnz1L8DI 1 RT @dog_rates: This is Lilly. She just parallel barked. Kindly requests a reward now. 13/10 would pet so well https://t.co/SATN4If5H5 1 Meet Lola. She's a Metamorphic Chartreuse. Plays with her food. Insubordinate and churlish. Exquisite hardwood 11/10 https://t.co/etpBNXwN7f 1 This is Bella. Based on this picture she's at least 8ft tall (wow)! Must be rare. 11/10 would pet on tippy toes https://t.co/XTVbSRdvcp 1 This is Laika. She was a space pupper. The first space pupper actually. Orbited earth like a h*ckin boss. 14/10 hero af https://t.co/trSjgY3h4g 1 This is Finn. He's very nervous for the game. Has a lot of money riding on it.10/10 would attempt to comfort https://t.co/CbtNfecWiT 1 Here's a badass mystery pupper. You weren't aware that you owe him money, but you do. 10/10 shades sick af https://t.co/fv9e9AtzSG 1 Meet Millie. She's practicing her dive form for Rio. It's nearly perfect. Dedicated af. 10/10 go for gold pupper https://t.co/SDVkc4m96M 1 It is an honor to rate this pup. He is a Snorklhuahua from Amarillo. A true renaissance dog. Also part Rudolph 10/10 https://t.co/ALNyYuGui7 1 This is Edmund. He sends stellar selfies. Cute af. 8/10 would totally snapchat with this pupper https://t.co/PprXoqZuKY 1 When bae calls your name from across the room. 12/10 (vid by @christinemcc98) https://t.co/xolcXA6gxe 1 This is Blue. He was having an average day until his owner told him about Bront. 12/10 h*ckin hysterical af https://t.co/saRYTcxQeH 1 RT until we find this dog. Clearly a cool dog (front leg relaxed out window). Looks to be a superb driver. 10/10 https://t.co/MnTrKaQ8Wn 1 Here's a pupper that's very hungry but too lazy to get up and eat. 12/10 (vid by @RealDavidCortes) https://t.co/lsVAMBq6ex 1 RT @dog_rates: This is Harper. She scraped her elbow attempting a backflip off a tree. Valiant effort tho. 12/10 https://t.co/oHKJHghrp5 1 Here's a very sleepy pupper. Appears to be portable as h*ck. 12/10 would snug intensely https://t.co/61sX7pW5Ca 1 This is Orion. He just got back from the dentist. Cavity free af. 12/10 would give extra pats https://t.co/Y4DZx2UWsr 1 Doggo will persevere. 13/10\nhttps://t.co/yOVzAomJ6k 1 Someone help the girl is being mugged. Several are distracting her while two steal her shoes. Clever puppers 121/110 https://t.co/1zfnTJLt55 1 This is Bear. He's a passionate believer of the outdoors. Leaves excite him. 12/10 would hug softly https://t.co/FOF0hBDxP8 1 This is Ruby. Her ice cube is melting. She doesn't know what to do about it. 11/10 https://t.co/Vfc3eAFl2q 1 This is Stefan. He's a downright remarkable pup. 13/10 https://t.co/Ebjt6Y4fMh 1 This is Louis. He thinks he's flying. 13/10 this is a legendary pup https://t.co/6d9WziPXmx 1 Quite an advanced dog here. Impressively dressed for canine. Has weapon. About to take out trash. 10/10 good dog https://t.co/8uCMwS9CbV 1 This is Scout. He really wants to kiss himself. H*ckin inappropriate. 11/10 narcissistic af https://t.co/x0gV2Ck3AD 1 Instead of the usual nightly dog rate, I'm sharing this story with you. Meeko is 13/10 and would like your help \n\nhttps://t.co/Mj4j6QoIJk https://t.co/JdNE5oqYEV 1 This is Winnie. She's h*ckin ferocious. Dandelion doesn't even see her coming. 12/10 would pet with caution https://t.co/EFfLCP7oQv 1 This is Willy. He's millennial af. 11/10 https://t.co/Fm1SvVLsad 1 This is Sephie. According to this picture, she can read. Fantastic at following directions. 11/10 such a good girl https://t.co/7HY9RvCudo 1 This is Shawwn. He's a Turkish Gangrene Robitussin. Spectacular tongue. Cranks out push-ups. 8/10 #NoDaysOff #swole https://t.co/IQFZKNUlXx 1 This is Frankie. He's wearing blush. 11/10 really accents the cheek bones https://t.co/iJABMhVidf 1 This pupper doesn't understand gates. 10/10 so close https://t.co/GUbFF4o6dZ 1 This is Sophie. She just arrived. Used pawority shipping. Speedy as h*ck delivery. 13/10 would carefully assemble https://t.co/8jOC4zhNxy 1 This is Hobbes. He's never seen bubbles before. 13/10 deep breaths buddy https://t.co/QFRlbZw4Z1 1 RT @dog_rates: This is Penny. She fought a bee and the bee won. 10/10 you're fine Penny, everything's fine https://t.co/zrMVdfFej6 1 This is Calvin. He is a Luxembourgian Mayo. Having issues with truck. Has it under control tho. 9/10 responsible af https://t.co/3Bbba7y8Xe 1 This is Sebastian. He's super h*ckin fluffy. That's really all you need to know. 11/10 would snug intensely https://t.co/lqr0NdtwQo 1 AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO7HEQGA 1 This is Baron. He's officially festive as h*ck. Thinks it's just a fancy scarf. 11/10 would pat head approvingly https://t.co/PjulYEXTvg 1 All hail sky doggo. 13/10 would jump super high to pet https://t.co/CsLRpqdeTF 1 This is Arlen and Thumpelina. They are best pals. Cuddly af. 11/10 for both puppers https://t.co/VJgbgIzIHx 1 This is Mairi. She has mastered the art of camouflage. 12/10 h*ckin sneaky af https://t.co/STcPjiNAHp 1 Idk why this keeps happening. We only rate dogs. Not Bangladeshi Couch Chipmunks. Please only send dogs... 12/10 https://t.co/ya7bviQUUf 1 "Can you behave? You're ruining my wedding day"\nDOG: idgaf this flashlight tastes good as hell\n\n10/10 https://t.co/GlFZPzqcEU 1 Meet Danny. He's too good to look at the road when he's driving. Absolute menace. 6/10 completely irresponsible https://t.co/I1lMUy1FqH 1 12/10 good shit Bubka\n@wane15 1 This is Koda. She's a Beneboom Cumberwiggle. 12/10 petable as hell https://t.co/VZV6oMJmU6 1 Meet Larry. He doesn't know how to shoe. 9/10 damn it Larry https://t.co/jMki5GOV3y 1 Rare submerged pup here. Holds breath for a long time. Frowning because that spoon ignores him. 5/10 would still pet https://t.co/EJzzNHE8bE 1 This is Theo. He can walk on water. Still coming to terms with it. 12/10 magical af https://t.co/8Kmuj6SFbC 1 This is Meera. She just heard about taxes and how much a doghouse in a nice area costs. Not pupared to be a doggo anymore. 12/10 https://t.co/GZmNEdyoJY 1 This is Stanley. He has too much skin. Isn't happy about it. Quite pupset actually. Still 11/10 would comfort https://t.co/hhTfnPrWfb 1 This is Torque. He served his nickel. Better not owe Torque money. Torque will find u. 10/10 cause I'm scared of him https://t.co/TnSRDqYO5i 1 This is Cassie. She is a college pup. Studying international doggo communication and stick theory. 14/10 so elegant much sophisticate https://t.co/t1bfwz5S2A 1 This is Zeke. He performs group cheeky wink tutorials. Pawfect execution here. 12/10 would wink back https://t.co/uMH5CLjXJu 1 This is Jeffrey. He's being held so he doesn't fly away. 12/10 would set free https://t.co/d3aLyCykn7 1 RT @dog_rates: This is Astrid. She's a guide doggo in training. 13/10 would follow anywhere https://t.co/xo7FZFIAao 1 This is a Birmingham Quagmire named Chuk. Loves to relax and watch the game while sippin on that iced mocha. 10/10 https://t.co/HvNg9JWxFt 1 This is Baxter. He's very calm. Hasn't eaten in weeks tho. Not good at fetch. Never blinks. 8/10 would still pet https://t.co/fUuiyu2QTD 1 Say hello to Crimson. He's a Speckled Winnebago. Main passions are air hockey & parkour. 11/10 would pet thoroughly https://t.co/J5aI7SjzDc 1 This is getting incredibly frustrating. This is a Mexican Golden Beaver. We only rate dogs. Only send dogs ...10/10 https://t.co/0yolOOyD3X 1 This is Sampson. He just graduated. Ready to be a doggo now. Time for the real world. 12/10 have fun with taxes https://t.co/pgVKxRw0s1 1 We only rate dogs. Pls stop sending in non-canines like this Mongolian grass snake. This is very frustrating. 11/10 https://t.co/22x9SbCYCU 1 Unbelievable. We only rate dogs. Please don't send in non-canines like the "I" from Pixar's opening credits. Thank you... 12/10 https://t.co/JMhDNv5wXZ 1 This is Tito. He's on the lookout. Nobody knows for what. 10/10 https://t.co/Qai481H6RA 1 Crazy unseen footage from Jurassic Park. 10/10 for both dinosaur puppers https://t.co/L8wt2IpwxO 1 This is Kevin. He's just so happy. 13/10 what is your secret Kevin https://t.co/1r4MFCbCX5 1 When you're just relaxin and having a swell time but then remember you have to fill out the FAFSA ...11/10 https://t.co/qy33OBcexg 1 Breathtaking pupper here. Should be on the cover of Dogue. Top-notch tongue. Appears considerably fluffy. 12/10 https://t.co/Eeh3yfdglS 1 This little pupper can't wait for Christmas. He's pretending to be a present. S'cute. 11/10 twenty more days 🎁🎄🐶 https://t.co/m8r9rbcgX4 1 RT @dog_rates: Meet Fizz. She thinks love is a social construct consisting solely of ideals perpetuated by mass media 11/10 woke af https:/… 1 This is Milo. He's currently plotting his revenge. 10/10 https://t.co/ca0q9HM8II 1 This is Lennon. He's in quite the predicament. 8/10 hang in there pupper https://t.co/7mf8XXPAZv 1 Exotic pup here. Tail long af. Throat looks swollen. Might breathe fire. Exceptionally unfluffy 2/10 would still pet https://t.co/a8SqCaSo2r 1 This is Max. There's no way in h*ck you're taking his pacifier. Binky promises it's not happening. 13/10 very good stubborn boy https://t.co/9lVAqDEvZ5 1 This is Patrick. He's a bigass pupper. 7/10 https://t.co/J9DXBFoAQe 1 Meet Moose. He doesn't want his friend to go back to college. 13/10 looks like you're staying home John https://t.co/LIhmM7i70k 1 This is Clark. He was just caught wearing pants. 13/10 game-changing af https://t.co/2Xo19aPrG5 1 This is Bella. She just learned that her final grade in chem was a 92.49 \npoor pupper 11/10 https://t.co/auOoKuoveM 1 This is Bauer. He had nothing to do with the cookies that disappeared. 13/10 very good boy https://t.co/AIMF8ouzvl 1 This is Barney. He's an elder doggo. Hitches a ride when he gets tired. Waves goodbye before he leaves. 13/10 please come back soon https://t.co/cFAasDXauK 1 RT @dog_rates: This is Dave. He's currently in a predicament. Doesn't seem to mind tho. 12/10 someone assist Dave https://t.co/nfprKAXqwu 1 This is Sobe. She's a h*ckin happy doggo. Only one leg tho. Must have good balance. 13/10 would smile back https://t.co/OiH8PaOxB1 1 This is Wishes. He has the day off. Daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/H9YgrUkYwa 1 This is Jessiga. She's a Tasmanian McCringleberry. Selfies make her uncomfortable. 10/10 would pet in time of need https://t.co/MrdPZz1CGk 1 Silly dog here. Wearing bunny ears. Nice long tail. Unique paws. Not crazy soft but will do. Extremely agile. 7/10 https://t.co/2BnCLtJMxD 1 Meet Striker. He's ready for Christmas. 11/10 https://t.co/B3xxSLjQSH 1 Meet Oliviér. He takes killer selfies. Has a dog of his own. It leaps at random & can't bark for shit. 10/10 & 5/10 https://t.co/6NgsQJuSBJ 1 Dogs only please. Small cows and other non canines will not be tolerated. Sick tattoos tho 8/10 https://t.co/s1z7mX4c9O 1 This is a purebred Bacardi named Octaviath. Can shoot spaghetti out of mouth. 10/10 https://t.co/uEvsGLOFHa 1 Please only send in dogs. Don't submit other things like this pic of Kenny Chesney in a bathtub. Thank you. 9/10 https://t.co/TMpDHHGspy 1 This pupper is afraid of its own feet. 12/10 would comfort https://t.co/Tn9Mp0oPoJ 1 Here's a doggo trying to catch some fish. 8/10 futile af (vid by @KellyBauerx) https://t.co/jwd0j6oWLE 1 This is Ashleigh. She's having Coachella withdrawals. Didn't even go tho. 10/10 stay strong pupper https://t.co/nRUaKWnJfH 1 This is Ozzy. He woke up 2 minutes before he had to be ready for the Christmas party. 9/10 classic Ozzy https://t.co/Kt9vmw0Fap 1 RT @rachel2195: @dog_rates the boyfriend and his soaking wet pupper h*cking love his new hat 14/10 https://t.co/dJx4Gzc50G 1 This is Aubie. He has paws for days. Nibbling tables is one of his priorities. Second only to being cuddly af. 12/10 https://t.co/cBIFBsCRz6 1 This is Ember. That's the q-tip she owes money to. 11/10 pay up pup. (vid by @leanda_h) https://t.co/kGRcRjRJRl 1 RT @dog_rates: This is Jamesy. He gives a kiss to every other pupper he sees on his walk. 13/10 such passion, much tender https://t.co/wk7T… 1 This is a funny dog. Weird toes. Won't come down. Loves branch. Refuses to eat his food. Hard to cuddle with. 3/10 https://t.co/IIXis0zta0 1 This is Maximus. A little rain won't stop him. He will persevere. 12/10 innovative af https://t.co/2OmDMAkkou 1 RT @dog_rates: This is Gus. He likes to be close to you, which is good because you want to be close to Gus. 12/10 would boop then pet https… 1 This is Genevieve. She is a golden retriever cocktail mix. Comfortable close to wall. Shows no emotions. 9/10 https://t.co/azEoGqVonH 1 This is Cassie. She goes door to door trying to find the owner of this baguette. No luck so far. 10/10 https://t.co/e8bj97CisO 1 This is Tucker. He would like a hug. 13/10 someone hug him https://t.co/wdgY9oHPrT 1 Honor to rate this dog. Great teeth. Nice horns. Unbelievable posture. Fun to pet. Big enough to ride. 10/10 rad dog https://t.co/7JMAHdJ6A4 1 This is Chip. Chip's pretending to be choked. 10/10 lol classic Chip https://t.co/yoB0SM1AAP 1 Meet Percy. He's a Latvian Yuletide Heineken. Refuses to take off sweater. Kinda feisty. 12/10 would keep in pocket https://t.co/QGM5Fcuv7s 1 Meet Sam. She smiles 24/7 & secretly aspires to be a reindeer. \nKeep Sam smiling by clicking and sharing this link:\nhttps://t.co/98tB8y7y7t https://t.co/LouL5vdvxx 1 RT @Jenna_Marbles: @dog_rates Thanks for rating my cermets 14/10 wow I'm so proud I watered them so much 1 "Hello forest pupper I am house pupper welcome to my abode" (8/10 for both) https://t.co/qFD8217fUT 1 I shall call him squishy and he shall be mine, and he shall be my squishy. 13/10 https://t.co/WId5lxNdPH 1 Meet Stu. Stu has stacks on stacks and an eye made of pure gold. 10/10 pay for my tuition pls https://t.co/7rkYZQdKEd 1 Meet Reagan. He's a Persnicketus Derpson. Great with kids. Permanently caught off guard. 8/10 https://t.co/A2j2StfNgL 1 RT @dog_rates: Meet George. He looks slightly deflated but overall quite powerful. Not sure how that human restrained him. 12/10 would snug… 1 This is Rhino. He arrived at a shelter with an elaborate doggo manual for his new family, written by someone who will always love him. 13/10 https://t.co/QX1h0oqMz0 1 Meet Herb. 12/10 https://t.co/tLRyYvCci3 1 Say hello to Luna. Her tongue is malfunctioning (tragic). 12/10 please enjoy (vid by @LilyArtz) https://t.co/F9aLnADVIw 1 This is Ebby. She's a Zimbabwean Feta. Embarrassed by ridiculously squishy face. 9/10 would squeeze softly https://t.co/LBJqxMGaHi 1 I just love this picture. 12/10 lovely af https://t.co/Kc84eFNhYU 1 This is Coops. He's yelling at the carpet. Not very productive Coops. 7/10 https://t.co/Uz52oYnHzF 1 This is Cassie. She can go from sweet to scary af in a matter of seconds. 10/10 points deducted for cats on pajamas https://t.co/B6dmZmJBdK 1 This is Sugar. She excels underwater. 12/10 photogenic af https://t.co/AWMeXJJz64 1 This is Reptar. He specifically asked for his skis to have four bindings. He's not happy. Quite perturbed tbh. 10/10 https://t.co/l9k7TPP7Tp 1 This is Frankie. He has yet to learn how to control his tongue. 11/10 maybe one day https://t.co/p6fgYe2dB6 1 & this is Yoshi. Another world record contender 11/10 (what the hell is happening why are there so many contenders?) https://t.co/QG708dDNH6 1 RT @dog_rates: Say hello to Maddie and Gunner. They are considerably pupset about bath time. Both 12/10 but Gunner needs your help\n\nhttps:/… 1 This is Titan. His nose is quite chilly. Requests to return to the indoors. 12/10 would boop to warm https://t.co/bLZuOh9sKy 1 Say hello to Lucy and Sophie. They think they're the same size. Both 10/10 would snug at same time https://t.co/HW50zkcf2R 1 This is Kreg. He's riding an invisible jet ski. 11/10 that's downright legendary https://t.co/BA5AV5dx6Y 1 This is Rumpole. He'll be your Uber driver this evening. Won't start driving until you buckle pup. 13/10 h*ckin safe good boy https://t.co/EX9Z3EXlVP 1 Say hello to Panda. He's a Quackadilly Shooster. Not amused by your fake ball throwing motion. 9/10 would hug lots https://t.co/wL1iDvbcVk 1 This is Ted. He's given up. 11/10 relatable af https://t.co/7muyOQXbGJ 1 This is Maks. Maks just noticed something wasn't right. 10/10 https://t.co/0zBycaxyvs 1 RT @dog_rates: We only rate dogs... this is a Taiwanese Guide Walrus. Im getting real heckin tired of this. Please send dogs. 10/10 https:/… 1 Rare shielded battle dog here. Very happy about abundance of lettuce. Painfully slow fetcher. Still petable. 5/10 https://t.co/C3tlKVq7eO 1 This is Gary. He's a hide and seek champion. Second only to Kony. 8/10 Gary has a gift https://t.co/cAlB4XCcsi 1 RT @dog_rates: Please only send in dogs. We only rate dogs, not seemingly heartbroken ewoks. Thank you... still 10/10 would console https:/… 1 Here we have a 1949 1st generation vulpix. Enjoys sweat tea and Fox News. Cannot be phased. 5/10 https://t.co/4B7cOc1EDq 1 After watching this video, we've determined that Pippa will be upgraded to a 12/10. Please enjoy https://t.co/IKoRK4yoxV 1 Meet Winston. He's pupset because I forgot to mention that it's Canada Day today. 11/10 please forgive me Winston https://t.co/xEY8dbJxnF 1 This is Reggie. His Santa hat is a little big. 10/10 he's still having fun https://t.co/w0dcGXq7qK 1 This is Vincent. He's suave as h*ck. Will be your copilot this evening. Claims he doesn't need to look at the directions. 12/10 https://t.co/u51tzXSVi3 1 HE WAS JUST A LIL SLEEPY FROM BEING SUCH A GOOD DOGGI ALL THE TIME MISTAKES HAPPEN 13/10\nhttps://t.co/G2ms0A5jWM 1 This is Raphael. He is a Baskerville Conquistador. Entertains at all the gatherings. 10/10 simply magnificent https://t.co/3NTykJmtHt 1 This is Rocco. He's in a very intense game of freeze tag. Currently waiting to be unfrozen 10/10 https://t.co/xZXUKVXJ7l 1 Sorry for the lack of posts today. I came home from school and had to spend quality time with my puppo. Her name is Zoey and she's 13/10 https://t.co/BArWupFAn0 1 This is Keith. He's pursuing a more 2D lifestyle. Idiosyncratic af. 12/10 follow your dreams Keith https://t.co/G9ufksBMlU 1 This is light saber pup. Ready to fight off evil with light saber. 10/10 true hero https://t.co/LPPa3btIIt 1 Meet Tango. He's a large dog. Doesn't care much for personal space. Owner isn't very accepting. Tongue slip. 6/10 https://t.co/p2T5kGebxe 1 This is a Butternut Cumberfloof. It's not windy they just look like that. 11/10 back at it again with the red socks https://t.co/hMjzhdUHaW 1 This is Earl. He found a hat. Nervous about what you think of it. 12/10 it's delightful, Earl https://t.co/MYJvdlNRVa 1 This is Keurig. He's a rare dog. Laughs like an idiot tho. Head is basically a weapon. Poorly maintained goatee 4/10 https://t.co/xOrUyj7K30 1 "Challenge completed" \n(pupgraded to 12/10) https://t.co/85dTK7XCXB 1 This is Mattie. She's extremely dangerous. Will bite your h*ckin finger right off. Still 11/10 would pet with caution https://t.co/78c9W8kLFh 1 RT @KibaDva: I collected all the good dogs!! 15/10 @dog_rates #GoodDogs https://t.co/6UCGFczlOI 1 This is Dot. He found out you only pretended to throw the ball that one time. You don't fuck with Dot. 8/10 https://t.co/Ymg4fwKlZd 1 This is Banditt. He is a brown LaBeouf retriever. Loves cold weather. 4 smaller dogs are his sons (probably). 10/10 https://t.co/Ko7eCsFpnI 1 This is Rufus. He just missed out on the 100m final at Rio. Already training hard for Tokyo. 10/10 never give pup https://t.co/exrRjjJqeO 1 Not much to say here. I just think everyone needs to see this. 12/10 https://t.co/AGag0hFHpe 1 This is Charlie. He was just informed that dogs can't be Jedi. 11/10 https://t.co/mGW5c50mPA 1 This is Maxwell. That's his moped. He rents it out for others to use as long as he can come also. 11/10 great dog https://t.co/IF5kKaO945 1 *collapses* 12/10 https://t.co/C7M8mnzHIK 1 😂😂😂 10/10 for the dog and the owner https://t.co/5iYF0Ci0EK 1 Say hello to Bobbay. He's a marshmallow wizard. 10/10 https://t.co/r6LZN1o1Gx 1 I have a new hero and his name is Howard. 14/10 https://t.co/gzLHboL7Sk 1 This is Puff. He started out on the streets (first pic), but don't let the new smile fool you, still tough af. 11/10 https://t.co/kiuXRXcg4B 1 We only rate dogs. This is quite clearly a smol broken polar bear. We'd appreciate if you only send dogs. Thank you... 12/10 https://t.co/g2nSyGenG9 1 Meet Sammy. At first I was like "that's a snowflake. we only rate dogs," but he would've melted by now, so 10/10 https://t.co/MQfPK4zwuh 1 This is Dudley. He found a flower and now he's a queen. 11/10 would be an honor to pet https://t.co/nuJxtmlLcY 1 "I'm the only one that ever does anything in this household" 10/10 https://t.co/V8HcVIh4jt 1 Other pupper asked not to have his identity shared. Probably just embarrassed about the headbutt. Also 12/10 it'll be ok mystery pup 1 This is Rizzy. She smiles a lot. 12/10 contagious af https://t.co/TU4sZogVIq 1 This is Oscar and Oliver. Oliver shrunk Oscar. Oscar isn't pleased about it. Quite pupset tbh. Oliver doesn't seem to mind. Both 13/10 https://t.co/e3U4NReleC 1 This is Bear. Don't worry, he's not a real bear tho. Contains unreal amounts of squish. 11/10 heteroskedastic af https://t.co/coi4l1T2Sm 1 Your fav crew is back and this time they're embracing cannabis culture. 12/10 for all https://t.co/oSvRDuMm1D 1 This is Rover. As part of pupper protocol he had to at least attempt to eat the plant. Confirmed not tasty. Needs peanut butter. 12/10 https://t.co/AiVljI6QCg 1 Meet Jesse. He's a Fetty Woof. His tongue ejects without warning. A true bleptomaniac. 12/10 would snug well https://t.co/fUod0tVmvK 1 Here is Dave. He is actually just a skinny legged seal. Happy birthday Dave. 10/10 https://t.co/DPSamreuRq 1 Meet Sonny. He's an in-home movie critic. That is his collection. He's very proud of it. 12/10 https://t.co/yPbCALoy2n 1 This is an odd dog. Hard on the outside but loving on the inside. Petting still fun. Doesn't play catch well. 2/10 https://t.co/v5A4vzSDdc 1 Honor to rate this dog. Lots of fur on him. Two massive tumors on back. Should get checked out. Very neat tho. 7/10 https://t.co/bMhs18elNF 1 This girl straight up rejected a guy because he doesn't like dogs. She is my hero and I give her 13/10 https://t.co/J39lT3b0rH 1 This is Remington. He's a man dime. 12/10 https://t.co/m3ufSDwHHJ 1 I've been informed by multiple sources that this is actually a dog elf who's tired from helping Santa all night. Pupgraded to 12/10 1 Here's a little more info on Dew, your favorite roaming doggo that went h*ckin viral. 13/10 \nhttps://t.co/1httNYrCeW https://t.co/KvaM8j3jhX 1 This is Doug. His nose is legendary af. 12/10 (vid by @probably_trey) https://t.co/7IWKfbfihS 1 RT @dog_rates: This is Rusty. He's going D1 for sure. Insane vertical. 13/10 would draft https://t.co/AsykOwMrXQ 1 Please don't send in any more polar bears. We only rate dogs. Thank you... 10/10 https://t.co/83RGhdIQz2 1 Meet Chester. He just ate a lot and now he can't move. 10/10 that's going to be me in about 17 hours https://t.co/63jh1tYZa5 1 This is Pepper. She's not fully comfortable riding her imaginary bike yet. 10/10 don't worry pupper, it gets easier https://t.co/40dj4eTsXG 1 This is Linda. She fucking hates trees. 7/10 https://t.co/blaY85FIxR 1 RT @dog_rates: This is Sunny. She was also a very good First Doggo. 14/10 would also be an absolute honor to pet https://t.co/YOC1fHFCSb 1 This is Bluebert. He just saw that both #FinalFur match ups are split 50/50. Amazed af. 11/10 https://t.co/Kky1DPG4iq 1 Meet Blipson. He's a Doowap Hufflepuff. That Ugg is his temporary home while he's struggling with unemployment 11/10 https://t.co/YKvt0J5MXr 1 This is Oscar. He can wave. Friendly af. 12/10 would totally wave back (IG: Oscar.is.bear) https://t.co/waN6EW0wfM 1 This is Oliver. He's downright gorgeous as hell. Should be on the cover of Dogue. 12/10 would introduce to mom https://t.co/BkgU3rrsXA 1 This is Willie. He's floating away and needs your assistance. Please someone help Willie. 10/10 https://t.co/MJqygWqt8X 1 RT @dog_rates: This is Gromit. He's pupset because there's no need to beware of him. Just wants a pettin. 10/10 https://t.co/eSvz4EapHH 1 This is Fiona. She's an exotic dog. Seems rather impatient. Jaw extension on another level tho. Looks slippery. 10/10 would still pet https://t.co/vst2SEVJO3 1 This is Pumpkin. He can look in two different directions at once. Great with a screwdriver. 8/10 https://t.co/odpuqtz2Fq 1 This is Misty. She has a cowboy hat on her nose. 12/10 https://t.co/Eno0mypHIr 1 Tfw she says hello from the other side. 9/10 https://t.co/lS1TIDagIb 1 RT @dog_rates: After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https:/… 1 This pupper only appears through the hole of a Funyun. Much like Phineas, this one is also mysterious af. 10/10 https://t.co/SQsEBWxPyG 1 People please. This is a Deadly Mediterranean Plop T-Rex. We only rate dogs. Only send in dogs. Thanks you... 11/10 https://t.co/2ATDsgHD4n 1 Here's a sleepy doggo that requested some assistance. 12/10 would carry everywhere https://t.co/bvkkqOjNDV 1 Meet Chesney. On the outside he stays calm & collected. On the inside he's having a complete mental breakdown. 10/10 https://t.co/G4m0TFY9uc 1 Meet Boston. He's worried because his tongue won't fit all the way in his mouth. 12/10 it'll be ok deep breaths pup https://t.co/rfWQ4T9iQj 1 This is Calbert. He forgot to clear his Google search history. 9/10 rookie mistake Calbert https://t.co/jRm5J3YCmj 1 Beebop and Doobert should start a band 12/10 would listen 1 This is Gòrdón. He enjoys his razberrita by pool. Not a care in the world. 12/10 this dog has a better life than me https://t.co/zpdBQCcYgW 1 This is Lola. It's her first time outside. Must test the earth and taste the atmosphere. 13/10 you're doing great Lola https://t.co/74TKAUsLkO 1 This is Charles. He's camera shy. Tail longer than average. Doesn't look overwhelmingly fluffy. 6/10 would still pet https://t.co/rXvcElhoog 1 RT @dog_rates: Say hello to Levi. He's a Madagascan Butterbop. One of the more docile Butterbops I've seen. 12/10 would give all the pets h… 1 This is Tedders. He broke his leg saving babies from the Pompeii eruption. 11/10 where's his Purple Heart? @POTUS https://t.co/cMI2AcLm4B 1 A photographer took pictures before and after he told his bunny he's a good boy. Here are the results. 13/10 https://t.co/wiQZIsaWUe 1 The tail alone is 13/10. Great dog, better owner https://t.co/IyAXinfyju 1 RT @dog_rates: This is Luna. It's her first time outside and a bee stung her nose. Completely h*ckin uncalled for. 13/10 where's the bee I… 1 Here's a perturbed super floof. 12/10 would snug so damn well https://t.co/VG095mi09Q 1 This is Mona. She's a Yarborough Splishnsplash. Lost body during Nam. 11/10 revolutionary pupper https://t.co/pgD6h0yhgz 1 RT @loganamnosis: Penelope here is doing me quite a divertir. Well done, @dog_rates! Loving the pupdate. 14/10, je jouerais de nouveau. htt… 1 Meet Grizzwald. He may be the floofiest floofer I ever did see. Lost eyes saving a schoolbus from a volcano erpuption. 13/10 heroic as h*ck https://t.co/rf661IFEYP 1 This is Skittle. He's trying to communicate. 11/10 solid effort https://t.co/6WTfJvtKx6 1 RT @dog_rates: This is Maximus. His face is stuck like that. Tragic really. Great tongue tho. 12/10 would pet firmly https://t.co/xIfrsMNLBR 1 This is Shadow. He's a firm believer that they're all good dogs. H*ckin passionate about it too. 11/10 I stand with Shadow https://t.co/8yvpacwBcu 1 I've watched this a million times and you probably will too. 12/10 (vid by @emily_galasso) https://t.co/DU7Rb3NDiy 1 IT'S SO SMALL ERMERGERF 11/10 https://t.co/dNUbKOSiWW 1 Guys... Dog Jesus 2.0\n13/10 buoyant af https://t.co/CuNA7OwfKQ 1 I would like everyone to appreciate this pup's face as much as I do. 11/10 https://t.co/QIe7oxkSNo 1 This is Cooper. He basks in the glory of rebellion. 9/10 probably a preteen https://t.co/kDamUfeIpm 1 "I shall trip the big pupper with leash. Big pupper will never see it coming. I am a genius." Both 11/10 https://t.co/uQsCJ8pf51 1 This is Jersey. He likes to watch movies, but only if you watch with him. Enjoys horror films like The Bababork and H*ckraiser. 13/10 https://t.co/jvSNASweNb 1 Here's a stressed doggo. Had a long day. Many things on her mind. The hat communicates these feelings exquisitely. 11/10 https://t.co/fmRS43mWQB 1 Say hello to Penny & Gizmo. They are practicing their caroling. The ambition in the room is tangible. 9/10 for both https://t.co/aqBHjjh5VD 1 Good teamwork between these dogs. One is on lookout while other eats. Long necks. Nice big house. 9/10s good pups https://t.co/uXgmECGYEB 1 Take a moment and appreciate how these two dogs fell asleep. Simply magnificent. 10/10 for both https://t.co/juX48bWpng 1 Here we have uncovered an entire battalion of holiday puppers. Average of 11.26/10 https://t.co/eNm2S6p9BD 1 This is Boomer. He's self-baptizing. Other doggo not ready to renounce sins. 11/10 spiritually awakened af https://t.co/cRTJiQQk9o 1 This is Billy. He sensed a squirrel. 8/10 damn it Billy https://t.co/Yu0K98VZ9A 1 This is Cermet, Paesh, and Morple. They are absolute h*ckin superstars. Watered every day so they can grow. 14/10 for all https://t.co/GUefqUmZv8 1 This is Tess. Her main passions are shelves and baking too many cookies. 11/10 https://t.co/IriJlVZ6m4 1 Please only send in dogs. We only rate dogs, not seemingly heartbroken ewoks. Thank you... still 10/10 would console https://t.co/HIraYS1Bzo 1 This is Kota and her son Benedict. She doesn't know why you're staring. They are a normal family. Both 10/10 https://t.co/Q1v9BZylvZ 1 This... is a Jubilant Antarctic House Bear. We only rate dogs. Please only send dogs. Thank you... 12/10 would suffocate in floof https://t.co/4Ad1jzJSdp 1 This is Terry. He's a Toasty Western Sriracha. Doubles as a table. Great for parties. 10/10 would highly recommend https://t.co/1ui7a1ZLTT 1 "Fuck the system" 10/10 https://t.co/N0OADmCnVV 1 This is Cal. He's a Swedish Geriatric Cheddar. Upset because the pope is laughing at his eyebrows. 9/10 https://t.co/EW4MsOrF5O 1 This is Maddie. She gets some wicked air time. Hardcore barkour. 11/10 nimble af https://t.co/bROYbceZ1u 1 This is Oliver. He's an English Creamschnitzel. The rarest of schnitzels. 11/10 would pet quite firmly https://t.co/qbO5X6dYuj 1 When you're trying to enjoy yourself but end up having to take care of your way too drunk friend. 11/10 https://t.co/BRkhj6tdN0 1 This is Jeffrey. He's quite the jokester. Takes it too far sometimes. Still 11/10 would pet https://t.co/YDtZcAiMAf 1 This is Dobby. I can't stop looking at her feet. 12/10 would absolutely snug https://t.co/LhzPWv6rTv 1 ITSOFLUFFAYYYYY 12/10 https://t.co/bfw13CnuuZ 1 Did... did they pick out that license plate? 12/10 for both https://t.co/lRmUUOxgbQ 1 This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB 1 This is Dewey (pronounced "covfefe"). He's having a good walk. Arguably the best walk. 13/10 would snug softly https://t.co/HciEaJkC4D 1 This is Max. She has one ear that's always slightly more alert than the other. 10/10 wonky af https://t.co/5eJg69G8vY 1 Here's a pupper with magic eyes. Not wearing a seat belt tho (irresponsible af). Very distracting to driver. 9/10 https://t.co/5DLJB4ssvI 1 RT @dog_rates: Like father (doggo), like son (pupper). Both 12/10 https://t.co/pG2inLaOda 1 This is Walter. His owner has been watching all the Iditarod coverage and is convinced Walter can be a sled dog. 13/10 Walter isn't so sure https://t.co/0av1PEehFI 1 Interesting dog here. Very large. Purple. Manifests rainbows. Perfect teeth. No ears. Surprisingly knowledgable 6/10 https://t.co/QVaEMsB9tS 1 I have stumbled puppon a doggo painting party. They're looking to be the next Pupcasso or Puppollock. All 13/10 would put it on the fridge https://t.co/cUeDMlHJbq 1 Here we are witnessing the touchdown of a pupnado. It's not funny it's actually very deadly. 9/10 might still pet https://t.co/CmLoKMbOHv 1 This is Kenneth. He's stuck in a bubble. 10/10 hang in there Kenneth https://t.co/uQt37xlYMJ 1 13/10 for breakdancing puppo @shibbnbot 1 This is Lilli Bee & Honey Bear. Unfortunately, they were both born with no eyes. So heckin sad. Both 11/10 https://t.co/4UrfOZhztW 1 Meet Ash. He's a Benebop Cumberplop. Quite rare. Fairly portable. Lil sandy tho. Clearly knows something you don't. 12/10 would hug softly https://t.co/1U0z6r5LSO 1 RT @dog_rates: Meet Winston. He knows he's a little too big for the swing, but he doesn't care. Kindly requests a push. 12/10 would happily… 1 This is a baby Rand Paul. Curls for days. 11/10 would cuddle the hell out of https://t.co/xHXNaPAYRe 1 This is old now but it's absolutely heckin fantastic and I can't not share it with you all. 13/10 https://t.co/wJX74TSgzP 1 At first I thought this was a dog because of the sign, but it is clearly Wilson from Home Improvement. Please only send in dogs... 11/10 https://t.co/jqPk1BZ6xu 1 This is Tuco. That's the toast that killed his father. 9/10 https://t.co/ujnWy26RMe 1 @UNC can confirm 12/10 1 Meet Colby. He's that one cool friend that gets you into every party. Great hat. Sneaky tongue slip. 10/10 good pup https://t.co/jBnz3MjTzX 1 Say hello to Mark. He's a good dog. Always ready to go for a walk. Excellent posture. 9/10 keep it up Mark https://t.co/m9NleZ1i80 1 Here's a doggo completely oblivious to the double rainbow behind him. 10/10 someone tell him https://t.co/OfvRoD6ndV 1 Meet Zeek. He is a grey Cumulonimbus. Zeek is hungry. Someone should feed Zeek asap. 5/10 absolutely terrifying https://t.co/fvVNScw8VH 1 "YOU CAN'T HANDLE THE TRUTH" both 10/10 https://t.co/ZvxdB4i9AG 1 This is Oliver. That is his castle. He protects it with his life. He's also squishy af. 10/10 would squish softly https://t.co/oSuEGw0BhX 1 This is Kellogg. He accidentally opened the front facing camera. 8/10 get it together doggo https://t.co/MRYv7nDPyS 1 Lots of pups here. All are Judea Hazelnuts. Exceptionally portable. 8/10 for all https://t.co/Pa8EmpDCuI 1 Say hello to Brad. His car probably has a spoiler. Tan year round. Likes your insta pic but doesn't text back. 9/10 https://t.co/dfCCK3tWfr 1 This is Jeph. He's a Western Sagittarius Dookmarriot. Frightened by leaf. Caught him off guard. 10/10 calm down Jeph https://t.co/bicyOV6lju 1 This is Tom. He's a silly dog. Known for his unconventional swing style. One h*ck of a sneaky tongue slip too. 11/10 would push https://t.co/6fSVcn9HAU 1 This is Remus. He's a mop that came to life. Can't see anything. Constantly trips over himself. Still a very good dog. 11/10 https://t.co/S3f1SYylzu 1 This is Jimothy. He lost his body during the the Third Crusade (tragic). 11/10 heroic af tho https://t.co/wnsblfu7XE 1 Meet CeCe. She wanted to take a selfie before her first day as a lumberjack. 11/10 crushing traditional gender roles https://t.co/oW9XMYG3F4 1 This is Wallace. You said you brushed your teeth but he checked your toothbrush and it was bone dry. 11/10 not pupset, just disappointed https://t.co/nadm8yWZ4h 1 *lets out a tiny whimper and then collapses* ...12/10 https://t.co/BNdVZEHRow 1 RT @dog_rates: This is just downright precious af. 12/10 for both pupper and doggo https://t.co/o5J479bZUC 1 Meet Maggie. She enjoys her stick in the yard. Very content. Much tranquility. 10/10 keep it up pup https://t.co/eYP9i9gfYn 1 This is Rupert. You betrayed him with bath time but he forgives you. Cuddly af 13/10 https://t.co/IEARC2sRzC 1 This is Sugar. She's a Bolivian Superfloof. Spherical af. 12/10 would never let go of https://t.co/AhMfUu6Onm 1 Meet Stanley. He's an inverted Uzbekistani water pup. Hella exotic. Floats around all day. 8/10 I want to be Stanley https://t.co/XpYMBQ1FD8 1 This is Olivia. She just saw an adult wearing crocs. 11/10 poor pupper. No one should witness such a thing https://t.co/yJVTi1DjJc 1 This is Riley. His owner put a donut pillow around him and he loves it so much he won't let anyone take it off. 13/10 https://t.co/8TCQcsZCZ8 1 This is Lugan. He is a Bohemian Rhapsody. Very confused dog. Thinks his name is Rocky. Not amused by the snows 10/10 https://t.co/tI3uFLDHBI 1 Jerry just apuppologized to me. He said there was no ill-intent to the slippage. I overreacted I admit. Pupgraded to an 11/10 would pet 1 This is Heinrich (pronounced "Pat"). He's a Botswanian Vanderfloof. Snazzy af bandana. 12/10 downright puptacular https://t.co/G56ikYAqFg 1 This is Ralphson. He's very confused. Wondering why he's sitting on Santa's lap in February. 10/10 stay woke pupper https://t.co/INphk4ltkZ 1 This is Patch. He wants to be a Christmas tree. 11/10 https://t.co/WTJtf9O8Jg 1 Pupper hath acquire enemy. 13/10 https://t.co/ns9qoElfsX 1 Happy New Year from the squad! 13/10 for all https://t.co/9njRxyUd5L 1 From left to right:\nCletus, Jerome, Alejandro, Burp, & Titson\nNone know where camera is. 45/50 would hug all at once https://t.co/sedre1ivTK 1 This is Bo. He was a very good First Doggo. 14/10 would be an absolute honor to pet https://t.co/AdPKrI8BZ1 1 I can say with the pupmost confidence that the doggos who assisted with this search are heroic as h*ck. 14/10 for all https://t.co/8yoc1CNTsu 1 This is Samsom. He is sexually confused. Really wants to be a triceratops. 9/10 just a great guy https://t.co/HPoce45SI3 1 This is Duke. He sneaks into the fridge sometimes. It's his safe place. 11/10 would give little jacket if necessary https://t.co/Fd5WFDTMH4 1 This is Earl. He can't catch. Did his best tho. 11/10 would repair confidence with extra pats https://t.co/IsqyvbjFgM 1 This is Cooper. He began to tear up when his bone was taken from him. 11/10 stay strong pupper https://t.co/qI8yvqKG02 1 Meet Winnie. She just made awkward eye contact with the driver beside her. Poor pupper panicked. 11/10 would comfort https://t.co/RFWtDqTnAz 1 I know we joke around on here, but this is getting really frustrating. We rate dogs. Not T-Rex. Thank you... 8/10 https://t.co/5aFw7SWyxU 1 I've been told there's a slight possibility he's checking his mirror. We'll bump to 9.5/10. Still a menace 1 This is Wallace. He's a skater pup. He said see ya later pup. Can easily do a kick flip. Gnarly af. 10/10 v petable https://t.co/5i8fORVKgr 1 This is Doug. He's a Draconian Jabbawockee. Rad tongue. Ears are borderline legendary 11/10 would pet with a purpose https://t.co/MVvbQW88Pv 1 This is Gidget. She's a spy pupper. Stealthy as h*ck. Must've slipped pup and got caught. 12/10 would forgive then pet https://t.co/zD97KYFaFa 1 Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you https://t.co/kRK51Y5ac3 1 This is Josep. He is a Rye Manganese mix. Can drive w eyes closed. Very irresponsible. Menace on the roadways. 5/10 https://t.co/XNGeDwrtYH 1 This is Hazel. She's a gymnast. Training hard for Rio. 11/10 focused af https://t.co/CneG2ZbxHP 1 Army of water dogs here. None of them know where they're going. Have no real purpose. Aggressive barks. 5/10 for all https://t.co/A88x73TwMN 1 RT @dog_rates: This is Bailey. She loves going down slides but is very bad at it. Still 11/10 https://t.co/ivPWhspN3E 1 This is Bernie. He just touched a boob for the first time. 10/10 https://t.co/whQKMygnK6 1 Here we see 33 dogs posing for a picture. All get 11/10 for superb cooperation https://t.co/TRAri5iHzd 1 Two dogs in this one. Both are rare Jujitsu Pythagoreans. One slightly whiter than other. Long legs. 7/10 and 8/10 https://t.co/ITxxcc4v9y 1 She walks herself up and down the train to be petted by all the passengers. 13/10 I can't handle this https://t.co/gwKCspY8N2 1 "Thank you friend that was a swell petting" 11/10 (vid by @MatthewjamesMac) https://t.co/NY3cPAZAIM 1 After so many requests... here you go.\n\nGood dogg. 420/10 https://t.co/yfAAo1gdeY 1 HE'S LIKE "WAIT A MINUTE I'M AN ANIMAL THIS IS AMAZING HI HUMAN I LOVE YOU AS WELL" 13/10 https://t.co/sb73bV5Y7S 1 Let's hope this flight isn't Malaysian (lol). What a dog! Almost completely camouflaged. 10/10 I trust this pilot https://t.co/Yk6GHE9tOY 1 This is Gus. He didn't win the Powerball. Quite perturbed about it. Still 10/10 would comfort in time of need https://t.co/3wc246LOtu 1 This is Moose. He's rather h*ckin dangerous (you can tell by the collar). 11/10 would still attempt to snug https://t.co/lHVHGdDzb3 1 This is Hunter. He just found out he needs braces. Requesting an orthodogtist stat. 11/10 you're fine Hunter, everything's fine https://t.co/zW1o0W4AYV 1 Meet Abby. She's incredibly distracting. Just wants to help steer. Hazardous af. Still 12/10 would pet while driving https://t.co/gLbLiZtwsp 1 This is Stanley. He has his first swim lesson today. Doggle straps adjusted. Ready to go. 13/10 Phelps is nervous (IG: stanleythe_corgi) https://t.co/Nx52PGwH94 1 Here's a very sleepy pupper. Thinks it's an airplane. 12/10 would snug for eternity https://t.co/GGmcTIkBbf 1 Meet Buckley. His family & some neighbors came over to watch him perform but he's nervous af. 9/10 u got this pupper https://t.co/5bdCpPlno9 1 This is Zoey. She really likes the planet. Would hate to see willful ignorance and the denial of fairly elemental science destroy it. 13/10 https://t.co/T1xlgaPujm 1 This is Oshie. He's ready to party. Bought that case himself. 12/10 someone tell Oshie it's Wednesday morning https://t.co/YIJo7X7K9J 1 With great pupper comes great responsibility. 12/10 https://t.co/hK6xB042EP 1 This is Linus. He just wanted to say hello but no one's paying attention. 12/10 (vid by @rebeccacollinzz) https://t.co/VCijm2eVpR 1 RT @dog_rates: AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO7HEQGA 1 Say hello to this unbelievably well behaved squad of doggos. 204/170 would try to pet all at once https://t.co/yGQI3He3xv 1 This is Griffin. He's desperate for both a physical and emotion connection. 11/10 I'd hug the hell out of Griffin https://t.co/ObWcOEekt0 1 RT @dog_rates: This is Carly. She's actually 2 dogs fused together. Very innovative. Probably has superpowers. 12/10 for double dog https:/… 1 Meet Hurley. He's the curly one. He hugs every other dog he sees during his walk. 11/10 for spreading the love https://t.co/M6vqkt2GKV 1 This is Jax. He is a majestic mountain pupper. Thinks flat ground is for the weak. 12/10 would totally hike with https://t.co/KGdeHuFJnH 1 We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 https://t.co/rLi83ZyCL5 1 Here we have an Austrian Pulitzer. Collectors edition. Levitates (?). 7/10 would garden with https://t.co/NMQq6HIglK 1 This is Timber. He misses Christmas. Specifically the presents part. 12/10 cheer pup Timber https://t.co/dVVavqpeF9 1 This pupper doubles as a hallway rug. Very rare. Versatile af. 11/10 https://t.co/Jxd5pR02Cn 1 This is Champ. He's being sacrificed to the Aztec sun god Huitzilopochtli. So sad. 10/10 Champ doesn't deserve this https://t.co/VGsziXImoy 1 This is Lenny. He was just told that he couldn't explore the fish tank. 12/10 smh all that work for nothing https://t.co/JWi6YrpiO1 1 RT @dog_rates: Say hello to mad pupper. You know what you did. 13/10 would pet until no longer furustrated https://t.co/u1ulQ5heLX 1 Someone sent me this without any context and every aspect of it is spectacular. 13/10 please enjoy https://t.co/Rxrd4hPmp4 1 This is Alfie. He's that one hypocritical gym teacher who made you run laps. Great posture. Cool bench. 6/10 https://t.co/GCJzm3YsfX 1 This is Gerald. He was just told he didn't get the job he interviewed for. A h*ckin injustice. 12/10 didn't want the job anyway https://t.co/DK7iDPfuRX 1 This is Robin. She's desperately trying to do me a frighten, but her tongue drastically decreases her spook value. Still 11/10 great effort https://t.co/sxMrsOZ8zb 1 This is Dotsy. She's stuck as hell. 10/10 https://t.co/A0h4lnhU4s 1 *screams for a little bit and then crumples to the floor shaking* 12/10 https://t.co/W2MCt9pTed 1 BREAKING PUPDATE: I've just been notified that (if in U.S.) this dog appears to be operating the vehicle. Upgraded to 10/10. Skilled af 1 This is River. He's changing the trumpet game. Innovative af. 11/10 such a good boy https://t.co/tK7a0AxQfd 1 C'mon guys. Please only send in dogs. We only rate dogs, not Exceptional-Tongued Peruvian Floor Bears. Thank you... 12/10 https://t.co/z30iQLiXNo 1 This is Toby. He asked for chocolate cake for his birthday but was given vanilla instead. 8/10 it'll be ok Toby https://t.co/sYi2G0he4H 1 This is Derek. He's late for a dog meeting. 13/10 pet...al to the metal https://t.co/BCoWue0abA 1 This is Tyr. He is disgusted by holiday traffic. Just trying to get to Christmas brunch on time. 12/10 hurry up pup https://t.co/syuTXARdtN 1 This is Seamus. He's very bad at entering pools. Still a very good boy tho 11/10 https://t.co/hfi264QwYM 1 This is Chester. He's a Benefloof Cumberbark. Fabulous ears. Nifty shirt. Was probably on sale. Nice hardwood. 11/10 https://t.co/YoII7tWXMT 1 This is Larry. He has no self control. Tongue still nifty af tho 11/10 https://t.co/ghyT4Ubk1r 1 This is Andru. He made his very own lacrosse stick. Much dedication. Big dreams. Tongue slip. 11/10 go get em Andru https://t.co/1VJoY3OJ1F 1 This is a Coriander Baton Rouge named Alfredo. Loves to cuddle with smaller well-dressed dog. 10/10 would hug lots https://t.co/eCRdwouKCl 1 Meet Samson. He's absolute fluffy perfection. Easily 13/10, but he needs your help. Click the link to find out more\n\nhttps://t.co/z82hCtwhpn https://t.co/KoWrMkbMbW 1 This is Filup. He is overcome with joy after finally meeting his father. 10/10 https://t.co/TBmDJXJB75 1 You have been visited by the magical sugar jar puggo. He has granted you three boops. 13/10 would use immediately https://t.co/76iL7JUQdG 1 This is Flávio. He's a Macedonian Poppycock. 97% floof. Jubilant af. 11/10 personally I'd pet the hell out of https://t.co/BUyX7isHRg 1 Marvelous dog here. Rad ears. Not very soft. Large tumor on nose. Has a pet rock. Good w kids. 6/10 overall neat pup https://t.co/g5YkRqP0dg 1 Meet Toby. He's a Lithuanian High-Steppin Stickeroo. One of the more accomplished Stickeroos around. 10/10 so nifty https://t.co/cYPHuJYTjC 1 Here's a pupper before and after being asked "who's a good girl?" Unsure as h*ck. 12/10 hint hint it's you https://t.co/ORiK6jlgdH 1 @0_kelvin_0 >10/10 is reserved for puppos sorry Kevin 1 "Challenge accepted"\n10/10 https://t.co/vNjvr5Bl9u 1 This is a heavily opinionated dog. Loves walls. Nobody knows how the hair works. Always ready for a kiss. 4/10 https://t.co/dFiaKZ9cDl 1 Say hello to Katie. She's a Mitsubishi Hufflepuff. Curly af. 12/10 I'd do terrible things to acquire such a pup https://t.co/CFPIcGcwJv 1 13/10 such a good doggo\n@spaghemily 1 Here's a dog enjoying a sunset. 11/10 would trade lives with https://t.co/VsQdLxrv9h 1 This is Brody. He's trying to make the same face as the football. 12/10 https://t.co/2H4MfOGlpQ 1 Extremely intelligent dog here. Has learned to walk like human. Even has his own dog. Very impressive 10/10 https://t.co/0DvHAMdA4V 1 When you're way too slow for the "down low" portion of a high five. 13/10 https://t.co/Cofwoy7Vpq 1 This is an Albanian 3 1/2 legged Episcopalian. Loves well-polished hardwood flooring. Penis on the collar. 9/10 https://t.co/d9NcXFKwLv 1 This is Lucy. She's sick of these bullshit generalizations 11/10 https://t.co/d2b5C2R0aO 1 This is a very rare Great Alaskan Bush Pupper. Hard to stumble upon without spooking. 12/10 would pet passionately https://t.co/xOBKCdpzaa 1 RT @twitter: @dog_rates Awesome Tweet! 12/10. Would Retweet. #LoveTwitter https://t.co/j6FQGhxYuN 1 This is a Speckled Cauliflower Yosemite named Hemry. He's terrified of intruder dog. Not one bit comfortable. 9/10 https://t.co/yV3Qgjh8iN 1 Meet Indie. She's not a fan of baths but she's definitely a fan of hide & seek. 12/10 click the link to help Indie\n\nhttps://t.co/fvGkIuAlFK https://t.co/kiCFtmJd7l 1 When ur older siblings get to play in the deep end but dad says ur not old enough. Maybe one day puppo. All 10/10 https://t.co/JrDAzMhwG9 1 What kind of person sends in a pic without a dog in it? So churlish. Neat rug tho 7/10 https://t.co/LSTAwTdTaw 1 This is Augie. He's a savage. Doesn't give a h*ck about your garden. Still 10/10 would forgive then pet https://t.co/IU8S0n4oxn 1 IT'S PUPPERGEDDON. Total of 144/120 ...I think https://t.co/ZanVtAtvIq 1 We normally don't rate marshmallows but this one appears to be flawlessly toasted so I'll make an exception. 10/10 https://t.co/D9jbbmPmos 1 RT @dog_rates: We only rate dogs. This is quite clearly a smol broken polar bear. We'd appreciate if you only send dogs. Thank you... 12/10… 1 Say hello to mad pupper. You know what you did. 13/10 would pet until no longer furustrated https://t.co/u1ulQ5heLX 1 These little fellas have opposite facial expressions. Both 12/10 https://t.co/LmThv0GWen 1 This is Brownie. She's wearing a Halloween themed onesie. 12/10 festive af https://t.co/0R4meWXFOx 1 This is Phred. He's an Albanian Flepperkush. Tongue is rather impressive if I'm honest. Perhaps even legendary 11/10 https://t.co/VpfFCKE28C 1 Oh boy what a pup! Sunglasses take this one to the next level. Weirdly folds front legs. Pretty big. 6/10 https://t.co/yECbFrSArM 1 Pack of horned dogs here. Very team-oriented bunch. All have weird laughs. Bond between them strong. 8/10 for all https://t.co/U7DQQdZ0mX 1 Say hello to DayZ. She is definitely stuck on that stair. Just looking for someone to help her. 11/10 I would help https://t.co/be3zMW0Qj5 1 This is Harold. He looks slippery af. Probably difficult to hug. Would still try tho. 7/10 great with kids I bet https://t.co/EVuqdEO66N 1 This is Jax. He's a literal fluffball. Sneaky tongue slip. 10/10 would pet nonstop https://t.co/9MGouPwQmK 1 No no no this is all wrong. The Walmart had to have run into the dog driving the car. 10/10 someone tell him it's ok\nhttps://t.co/fRaTGcj68A 1 This is a Sizzlin Menorah spaniel from Brooklyn named Wylie. Lovable eyes. Chiller as hell. 10/10 and I'm out.. poof https://t.co/7E0AiJXPmI 1 This is Maya. She's very shy. Rarely leaves her cup. 13/10 would find her an environment to thrive in https://t.co/I6oNy0CgiT 1 This is Malcolm. He just saw a spider. 10/10 https://t.co/ympkwF65Dx 1 This is Nico. His selfie game is strong af. Excellent use of a sneaky tongue slip. 10/10 star material https://t.co/1OBdJkMOFx 1 We don't rate penguins, but if we did, this one would get 12/10 https://t.co/cEORXhwZ5K 1 Meet Jeb & Bush. Jeb is somehow stuck in that fence and Bush won't stop whispering sweet nothings in his ear. 9/10s https://t.co/NRNExUy9Hm 1 Meet Jarvis. The snow pupsets him. Officially ready for summer. 12/10 would perform a chilly boop https://t.co/0hLkztpiOW 1 This dog is never sure if he's doing the right thing. 10/10 https://t.co/GXq43zFfBu 1 Meet Gerbald. He just found out he's adopted. Poor pupper. Snazzy tongue tho. 11/10 would hold close in time of need https://t.co/UfGkB9Wrud 1 This is Leo. He was a skater pup. She said see ya later pup. He wasn't good enough for her. 12/10 you're good enough for me Leo https://t.co/Xw9JbJHTul 1 This is Berkeley. He's in a predicament. 10/10 someone help him https://t.co/XSEXdQupej 1 This is Luca. He got caught howling. H*ckin embarrassed. 12/10 https://t.co/r8DxA8DYJ2 1 This is Eli. He works backstage at Bone Jovi concerts. Heavy duty earmuffs for puptection. H*ckin safe boy. 11/10 https://t.co/cVQEnUQd8q 1 This is Pickles. She's a tiny pointy pupper. Average walker. Very skeptical of wet leaf. 8/10 https://t.co/lepRCaGcgw 1 This is a brave dog. Excellent free climber. Trying to get closer to God. Not very loyal though. Doesn't bark. 5/10 https://t.co/ODnILTr4QM 1 This is a rare Arctic Wubberfloof. Unamused by the happenings. No longer has the appetites. 12/10 would totally hug https://t.co/krvbacIX0N 1 Meet Clarkus. He's a Skinny Eastern Worcestershire. Can tie own shoes (impressive af) 10/10 would put on track team https://t.co/XP5o7zGn0E 1 Here we see a Byzantine Rigatoni. Very aerodynamic. No eyes. Actually not windy here they just look like that. 9/10 https://t.co/gzI0m6wXRo 1 Meet Bowie. He's listening for underground squirrels. Smart af. Left eye is considerably magical. 9/10 would so pet https://t.co/JyNmyjy3fe 1 This is Bentley. It's his first time going to the beach. I think he's a fan. 12/10 would build sand castles with https://t.co/iDK4OyQJoy 1 This is Schnozz. He's had a blurred tail since birth. Hasn't let that stop him. 10/10 inspirational pupper https://t.co/a3zYMcvbXG 1 This is Mojo. Apparently he's too cute for a seat belt. Hella careless. I'd still pet him tho. 11/10 buckle up pup https://t.co/dzZYx2NByW 1 This is Ted. He does his best. Sometimes that's not enough. But it's ok. 12/10 would assist https://t.co/f8dEDcrKSR 1 RT @tallylott: h*ckin adorable promposal. 13/10 @dog_rates https://t.co/6n8hzNihJ9 1 Very concerned about fellow dog trapped in computer. 10/10 https://t.co/0yxApIikpk 1 Occasionally, we're sent fantastic stories. This is one of them. 14/10 for Grace https://t.co/bZ4axuH6OK 1 Retweet the h*ck out of this 13/10 pupper #BellLetsTalk https://t.co/wBmc7OaGvS 1 This is Penny. She's trying on her prom dress. Stunning af 11/10 https://t.co/qcZDZGCapg 1 @Jack_Septic_Eye I'd need a few more pics to polish a full analysis, but based on the good boy content above I'm leaning towards 12/10 1 Here we see one dog giving a puptalk to another dog. Both are focused af. Left one has powerful feet. 11/10 for both https://t.co/fUacc13OrW 1 This is Chip. He only mowed half the yard. 8/10 quit the shit Chip we have other things to do https://t.co/LjzZKQ7vmK 1 RT @dog_rates: This is Hank. He's mischievous af. Doesn't even know what he was trying to do here. 8/10 quit the shit Hank damn https://t.c… 1 This is Lucy. She's terrified of the stuffed billed dog. 10/10 stay strong pupper https://t.co/QnvSjjyh7n 1 RT @dog_rates: Meet Eve. She's a raging alcoholic 8/10 (would b 11/10 but pupper alcoholism is a tragic issue that I can't condone) https:/… 1 Bedazzled pup here. Fashionable af. Super yellow. Looks hella fluffy. Webbed paws for efficient fetching. 8/10 https://t.co/ot8yMUGodj 1 "Don't ever talk to me or my son again." ...both 10/10 https://t.co/b8ncwl6TlE 1 12/10 revolutionary af https://t.co/zKzq4nIY86 1 Say hello to Mollie. This pic was taken after she bet all her toys on Ronda Rousey. 10/10 hang in there pupper https://t.co/QMmAqA9VqO 1 This is Sunny. She was also a very good First Doggo. 14/10 would also be an absolute honor to pet https://t.co/YOC1fHFCSb 1 When you wake up from a long nap and have no idea who you are. 12/10 https://t.co/dlF93GLnDc 1 This is Milo. He doesn't understand your fancy human gestures. Will lick instead. 10/10 can't faze this pupper https://t.co/OhodPIDOpW 1 I have found another. 13/10 https://t.co/HwroPYv8pY 1 This is Loki. He smiles like Elvis. Ain't nothin but a hound doggo. 12/10 https://t.co/QV5nx6otZR 1 RT @dog_rates: This is Lola. She fell asleep on a piece of pizza. 10/10 frighteningly relatable https://t.co/eqmkr2gmPH 1 This is Sadie. She is prepared for battle. 10/10 https://t.co/JRckDkZVRT 1 This is Sandy. She loves her spot by the tree. Contemplating her true purpose in the universe. Wears socks. 11/10 https://t.co/JpoEvgbDug 1 This is Lola. She's a surfing pupper. 13/10 magical af https://t.co/BlGQkhM5EV 1 Here we have Burke (pupper) and Dexter (doggo). Pupper wants to be exactly like doggo. Both 12/10 would pet at same time https://t.co/ANBpEYHaho 1 This is Mister. He's a wonderful father to his two pups. Heartwarming af. 10/10 for all https://t.co/2KcuJXL2r4 1 Jack deserves another round of applause. If you missed this earlier today I strongly suggest reading it. Wonderful first 14/10 🐶❤️ 1 This is CeCe. She's patiently waiting for Santa. 10/10 https://t.co/ZJUypFFwvg 1 This dog can't see its haters. 11/10 https://t.co/35BcGFdEAK 1 This is Gabe. He is a southern Baklava. Gabe has always wanted to fit in with the other bananas. 10/10 fabulous https://t.co/3LZrJzg3BJ 1 This is Pancake. She loves Batman and winks like a h*ckin champ. 12/10 real crowd pleaser https://t.co/6kqsAjJNhi 1 Scary dog here. Too many legs. Extra tail. Not soft, let alone fluffy. Won't bark. Moves sideways. Has weapon. 2/10 https://t.co/XOPXCSXiUT 1 I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC BY HIS OWNER THIS IS SO WILD. 14/10 ULTIMATE LEGEND STATUS https://t.co/7oQ1wpfxIH 1 RT @dog_rates: This is Frankie. He's wearing blush. 11/10 really accents the cheek bones https://t.co/iJABMhVidf 1 This is Flávio (pronounced Baxter). He's a Benesnoop Cumberdog. Super rare. Symmetrical. 12/10 would pet so well https://t.co/fGgleFiBPq 1 This is Harrison. He braves the snow like a champ. Perched at all times. Hasn't blinked in months. 8/10 v nifty dog https://t.co/tiVuq6MNwl 1 This is Pipsy. He is a fluffball. Enjoys traveling the sea & getting tangled in leash. 12/10 I would kill for Pipsy https://t.co/h9R0EwKd9X 1 I know this is a tad late but here's a wonderful Valentine's Day pupper 12/10 https://t.co/hTE2PEwGvi 1 RT @dog_rates: This is Arnie. He's a Nova Scotian Fridge Floof. Rare af. 12/10 https://t.co/lprdOylVpS 1 This is Waffles. His doggles are pupside down. Unsure how to fix. 13/10 someone assist Waffles https://t.co/xZDA9Qsq1O 1 This is Kyro. He's a Stratocumulus Flop. Tongue ejects at random. Serious h*ckin condition. Still 12/10 would pet passionately https://t.co/wHu15q2Q6p 1 This is Antony. He's a Sheraton Tetrahedron. Skips awkwardly. Doesn't look when he crosses the road (reckless). 7/10 https://t.co/gTy4WMXu8l 1 This is Rusty. He has no respect for POULTRY products. Unbelievable af. 7/10 would still pet https://t.co/hEH19t1eFp 1 Meet Rusty. Rusty's dreaming of a world where Twitter never got rid of favorites. Looks like a happy world. 11/10 https://t.co/C8U6cxI1Jc 1 This is Emanuel. He's a h*ckin rare doggo. Dwells in a semi-urban environment. Round features make him extra collectible. 12/10 would so pet https://t.co/k9bzgyVdUT 1 Meet Schnitzel. He's a Tropicana Floofboop. Getting too big for his favorite basket. 12/10 just so damn fluffy https://t.co/qjd0UJKYUY 1 "AT DAWN, WE RIDE"\n10/10 for both dogs https://t.co/3aXX6wH6it 1 If a pupper gave that to me I'd probably start shaking and faint from all the joy. 11/10 https://t.co/o9aJVPB25n 1 This is Jay. He's really h*ckin happy about the start of fall. Sneaky tongue slip in 2nd pic. 11/10 snuggly af https://t.co/vyx1X5eyWI 1 This is Wyatt. He had an interview earlier today. Was just told he didn't get the job. A h*ckin injustice. Still 12/10 keep your chin pup https://t.co/QXA4sCXSDF 1 This is Bo and Ty. Bo eats paper and Ty felt left out. 11/10 for both https://t.co/1acHQS8rvK 1 "Pupper is a present to world. Here is a bow for pupper." 12/10 precious as hell https://t.co/ItSsE92gCW 1 This is Tucker. He decided it was time to part ways with his favorite ball. We captured the emotional farewell on camera. 12/10 https://t.co/jTe7Y6P0HK 1 Here we have a Japanese Irish Setter. Lost eye in Vietnam (?). Big fan of relaxing on stair. 8/10 would pet https://t.co/BLDqew2Ijj 1 Say hello to Pherb. He does parkour. 9/10 https://t.co/LHFfUyLBZT 1 This is Amélie. She is a confident white college girl. Extremely intimidating. Literally can't rn omg. 11/10 fab https://t.co/up0MHRxelf 1 Herd of wild dogs here. Not sure what they're trying to do. No real goals in life. 3/10 find your purpose puppers https://t.co/t5ih0VrK02 1 This is Tucker. He is 100% ready for the sports. 12/10 I would watch anything with him https://t.co/k0ddVUWTcu 1 RT @dog_rates: "Yep... just as I suspected. You're not flossing." 12/10 and 11/10 for the pup not flossing https://t.co/SuXcI9B7pQ 1 This is Coco. She gets to stay on the Bachelor for another week. Super pumped 11/10 https://t.co/wsCB6LFNxD 1 This is Riley. He's making new friends. Jubilant as h*ck for the fun times ahead. 11/10 for all pups pictured https://t.co/PCX25VV78l 1 This is Lou. His sweater is too small and he already cut the tags off. Very very churlish. 10/10 would still pet https://t.co/dZPMLresEr 1 Meet Rusty. He appears to be rather h*ckin fluffy. Also downright adorable af. 12/10 would rub my face against his https://t.co/1j9kLGb4wV 1 This is Ruby. She's a Bimmington Fettuccini. One ear works a lil better than other. Looks startled. Cool carpet 9/10 https://t.co/j0Wpa42KCH 1 Unbelievable... We. Only. Rate. Dogs. Please stop sending in other things like this Blossoming Flop Kangaroo. Thank you... 11/10 https://t.co/EeeErAbso0 1 Meet Lucky. He was showing his friends an extreme pogo stick trick when he completely lost control. 10/10 still rad https://t.co/K55XrIoePl 1 When you're trying to watch your favorite tv show but your friends keep interrupting. 10/10 relatable af https://t.co/QQZDCYl6zT 1 This is Julio. He was one of the original Ringling Bros. Exceptional balance. Very alert. Ready for anything. 10/10 https://t.co/aeURGO9Qs8 1 This is Siba. She's remarkably mobile. Very sleepy as well. 12/10 would happily transport https://t.co/TjnI33RE1i 1 This is Beckham. He fell asleep at the wheel. Very churlish. Looks to have a backpup driver tho. That's good. 11/10 https://t.co/rptsOm73Wr 1 This is Toby. A cat got his tongue. 13/10 adorable af https://t.co/fHQrBKYSLC 1 This pupper is sprouting a flower out of her head. 12/10 revolutionary af https://t.co/glmvQBRjv4 1 Here we have Pancho and Peaches. Pancho is a Condoleezza Gryffindor, and Peaches is just an asshole. 10/10 & 7/10 https://t.co/Lh1BsJrWPp 1 Everybody drop what you're doing and look at this dog. 13/10 must be super h*ckin rare https://t.co/I1bJUzUEW5 1 This is Leonard. He hides in bushes to escape his problems. 10/10 relatable af https://t.co/TdyGTcX0uo 1 Say hello to Sadie and Daisy. They do all their shopping together. Can never agree on what to get. Like an old married pupple. Both 12/10 https://t.co/f5C5l5wa0e 1 This is Brat. He has a hard time being ferocious so his owner helps out. H*ckin scary af now. 12/10 would still pet https://t.co/soxdNqZDZ2 1 This is Todo. He's screaming because he doesn't want to wear his sweater or a seat belt. 9/10 gotta buckle up pup https://t.co/Nm8Spw4HbD 1 Meet Scott. Just trying to catch his train to work. Doesn't need everybody staring. 9/10 ignore the haters pupper https://t.co/jyXbZ35MYz 1 Here we have a northern speckled Rhododendron. Much sass. Gives 0 fucks. Good tongue. 9/10 would caress sensually https://t.co/ZoL8kq2XFx 1 Meet Goliath. He's an example of irony. Head is phenomenally round. Wants to be an ornament. 12/10 would hug gently https://t.co/72Dil0Aktw 1 This pup has a heart on its ass and that is downright legendary. 12/10 https://t.co/0OI927mmNJ 1 "Dammit hooman I'm jus trynna lik the fler" 11/10 https://t.co/eRZRI8OTj7 1 Meet Louie. He just pounded that bottle of wine. 9/10 goodnight Louie https://t.co/RAwZvMKRZB 1 This is Carly. She's actually 2 dogs fused together. Very innovative. Probably has superpowers. 12/10 for double dog https://t.co/GQn2IopLud 1 If you are aware of who is making these please let me know. 13/10 vroom vroom https://t.co/U0D1sbIDrG 1 Seriously guys?! Only send in dogs. I only rate dogs. This is a baby black bear... 11/10 https://t.co/H7kpabTfLj 1 RT @dog_rates: So this just changed my life. 13/10 please enjoy https://t.co/dsv4xAtfv7 1 This is Oreo. She's a photographer and a model. Living a double pupple life. 12/10 such talent much cute would pet https://t.co/zNeLxJeAoL 1 This is Dale. He's a real spookster. Did me quite the frighten. 11/10 not too spooky to pet tho https://t.co/L8BWDD4oBX 1 Meet Sid & Murphy. Murphy floats alongside Sid and whispers motivational quotes in his ear. Magical af. Both 11/10 https://t.co/7mmjyearQW 1 This is Ester. He has a cocaine problem. This is an intervention Ester. We all care about you. 8/10 https://t.co/eCVj2xT59V 1 This is Peanut. He was the World Table Tennis Champion back in 2003. Now he just does it for recreation. 10/10 https://t.co/LXVEHo9JMY 1 Meet Mason. He's a total frat boy. Pretends to be Hawaiian. Head is unbelievably round. 10/10 would pet so damn well https://t.co/DM3ZP3AA7b 1 This is Dexter. He's a shy pup. Doesn't bark much. Dreadful fetcher. Has rare sun allergy. 7/10 still petable https://t.co/sA7P3JSqiv 1 This is Storkson. He's wet and sad. 10/10 cheer up pup https://t.co/nrzvzPuTvC 1 This is Ambrose. He's an Alfalfa Ballyhoo. Draws pistol fast af. Pretty much runs the frontier. 11/10 lethal pupper https://t.co/ih6epBOxIA 1 Say hello to Tayzie. She's a Barbadian Bugaboop. Seems quite social. A rare quality for a Bugaboop. 10/10 petable af https://t.co/6qF5YZx6OV 1 RT @dog_rates: This is Finn. He's wondering if you come here often. Fr*ckin flirtatious af. 12/10 would give number to https://t.co/ii5eNX5… 1 Meet Daisy. She has no eyes & her face has been blurry since birth. Quite the trooper tho. Still havin a blast. 9/10 https://t.co/jcNdw43BIP 1 Pls make sure ur dogs have gone through some barkour training b4 they attempt stunts like this. 8/10 https://t.co/VmF35YvtqP 1 This is Philbert. His toilet broke and he doesn't know what to do. Trying not to panic. 11/10 furustrated af https://t.co/Nb68IsVb9O 1 What kind of person sends in a picture without a dog in it? 1/10 just because that's a nice table https://t.co/RDXCfk8hK0 1 This is Peaches. She's the ultimate selfie sidekick. Super sneaky tongue slip appreciated. 13/10 https://t.co/pbKOesr8Tg 1 Say hello to Cooper. His expression is the same wet or dry. Absolute 12/10 but Coop desperately requests your help\n\nhttps://t.co/ZMTE4Mr69f https://t.co/7RyeXTYLNi 1 This is Pip. He is a ship captain. Many years of experience sailing the treacherous open sea. 11/10 https://t.co/EY1uZJUGYJ 1 Please stop sending in non-canines like this Very Pettable Dozing Bath Tortoise. We only rate dogs. Only send dogs... 12/10 https://t.co/mcagPeENIh 1 He was doing his best. 12/10 I'll be his lawyer\nhttps://t.co/WN4C6miCzR 1 This is Blanket. She has overthrown her human. Demands walks like this every hour on the hour. 11/10 so damn fluffy https://t.co/hrJugNHs2Z 1 This is Meatball. He doing what's known in the industry as a mid-strut mlem. H*ckin fancy boy. 12/10 I'd do anything for Meatball https://t.co/S2HdmFFPck 1 Atlas rolled around in some chalk and now he's a magical rainbow floofer. 13/10 please never take a bath https://t.co/nzqTNw0744 1 Meet Fynn & Taco. Fynn is an all-powerful leaf lord and Taco is in the wrong place at the wrong time. 11/10 & 10/10 https://t.co/MuqHPvtL8c 1 These lil fellas are the best of friends. 12/10 for both. 1 like = 1 friend (vid by @CassieBrookee15) https://t.co/gzRghPC61H 1 This is Vixen. He really likes bananas. Steals them when he thinks nobody's watching. 13/10 opportunistic af https://t.co/a0CkS5ExFR 1 This is Beau. That is Beau's balloon. He takes it everywhere. 13/10 would protect at all costs https://t.co/YDtpCjIPKN 1 This is Nollie. She's waving at you. If you don't wave back you're a monster. She's also portable as hell. 12/10 https://t.co/7AKdkCOlMf 1 This is Lucy. She spent all morning overseeing the shoveling of the driveway. H*ckin hard work. 13/10 very good girl Lucy https://t.co/gA2GECjiQD 1 Meet Sadie. She's addicted to balloons. It's tearing her family apart. Won't admit she has a problem. Still 10/10 https://t.co/h6s9Rch0gZ 1 This is Kloey. Her mother was a unicorn. 10/10 https://t.co/NvKJRYDosA 1 This is Dunkin. He can only see when he's wet (tragic). 12/10 future heartbreaker https://t.co/At8Kxc5H9U 1 Meet Dante. At first he wasn't a fan of his new raincoat, then he saw his reflection. H*ckin handsome. 13/10 for water resistant good boy https://t.co/SHRTIo5pxc 1 This is Ollie Vue. He was a 3 legged pupper on a mission to overcome everything. This is very hard to write. 14/10 we will miss you Ollie https://t.co/qTRY2qX9y4 1 What an honor. 3 dogs here. Blond one is clearly a gymnast. Other two just confused. Very nifty pups. 9/10 for all https://t.co/YDgstgIDGs 1 Good morning here's a grass pupper. 12/10 https://t.co/2d68FmWGGs 1 This is Durg. He's trying to conquer his fear of trampolines. 9/10 it's not working https://t.co/5iH08ltkoe 1 I couldn't make it to the #WKCDogShow BUT I have people there on the ground relaying me the finest pupper pics possible. 13/10 for all https://t.co/jd6lYhfdH4 1 This is Biden. Biden just tripped... 7/10 https://t.co/3Fm9PwLju1 1 This is a dog swinging. I really enjoyed it so I hope you all do as well. 11/10 https://t.co/Ozo9KHTRND 1 @s8n You tried very hard to portray this good boy as not so good, but you have ultimately failed. His goodness shines through. 666/10 1 I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\nhttps://t.co/piiX0ke8Z6 https://t.co/1UHrKcaCiO 1 This is Rocky. He got triple-doggo-dared. Stuck af. 11/10 someone help him https://t.co/soNL00XWVu 1 Meet Trip. He likes wearing costumes that aren't consistent with the season to screw with people 10/10 tricky pupper https://t.co/40w7TI5Axv 1 This is Florence. He saw the same snap you sent him on your story. Pretty pupset with you. 12/10 https://t.co/rnkvT2kvib 1 This is Marley. She's having a ruff day. Pretty pupset. 12/10 would assist https://t.co/yLm7hQ6UXh 1 The millennials have spoken and we've decided to immediately demote to a 1/10. Thank you 1 Here's a pupper in a onesie. Quite pupset about it. Currently plotting revenge. 12/10 would rescue https://t.co/xQfrbNK3HD 1 This is Joshwa. He is a fuckboy supreme. He clearly relies on owner but doesn't respect them. Dreamy eyes tho 11/10 https://t.co/60xYFRATPZ 1 This is Vinscent. He was just questioned about his recent credit card spending. 8/10 https://t.co/qOD4G19A2u 1 When someone yells "cops!" at a party and you gotta get your drunk friend out of there. 10/10 https://t.co/4rMZi5Ca1k 1 Happy New Year from your fav holiday squad! 🎉 12/10 for all\n\nHere's to a pupper-filled year 🍻🐶🐶🐶 https://t.co/ZSdEj59FGf 1 "Everything looks pretty good in there. Make sure to brush your gums. Been flossing? How's school going?" Both 10/10 https://t.co/lWL2IMJqLR 1 This is Jim. He found a fren. Taught him how to sit like the good boys. 12/10 for both https://t.co/chxruIOUJN 1 This is Herm. It's his first day of potty training. He's doing great. You got this Herm. 10/10 stellar pup https://t.co/gFl60yFJ0w 1 This is Remington. He was caught off guard by the magical floating cheese. Spooked af. 10/10 deep breaths pup https://t.co/mhPSADiJmZ 1 Meet Luca. He's a Butternut Scooperfloof. Glorious tongue. 12/10 would pet really well https://t.co/VcxZQPNZaV 1 This is Leonidas. He just got rekt by a snowball. 9/10 doggy down https://t.co/uNrmYDUa9M 1 This is Pippin. He is terrified of his new little yellow giraffe. 11/10 https://t.co/ZICNl6tIr5 1 Here is a whole flock of puppers. 60/50 I'll take the lot https://t.co/9dpcw6MdWa 1 RT @dog_rates: This pupper killed this great white in an epic sea battle. Now wears it as a trophy. Such brave. Much fierce. 13/10 https://… 1 This is Gustaf. He's a purebred Chevy Equinox. Loves to shred. Gnarly lil pup. Great with the babes. 11/10 https://t.co/7CbO2eMAgJ 1 This is Furzey. He's doing an elevated sandy zoom. Adjusts ears to steer. 12/10 would pet mid flight https://t.co/zhbRIZQgnq 1 This pupper just wants a belly rub. This pupper has nothing to do w the tree being sideways now. 10/10 good pupper https://t.co/AyJ7Ohk71f 1 This is Newt. He's a strawberry. 11/10 https://t.co/2VhmlwxA1Q 1 RT @dog_rates: When it's Janet from accounting's birthday but you can't eat the cake cuz it's chocolate. 10/10 hang in there pupper https:/… 1 This is Benedict. He's a feisty pup. Needs a brushing. Portable af. Looks very angry actually. 4/10 might not pet https://t.co/3oeFfHjv0Z 1 Who keeps sending in pictures without dogs in them? This needs to stop. 5/10 for the mediocre road https://t.co/ELqelxWMrC 1 This is Walker. He's a Butternut Khalifa. Appears fuzzy af. 11/10 would hug for a ridiculous amount of time https://t.co/k6fEWHSALn 1 This pupper is fed up with being tickled. 12/10 I'm currently working on an elaborate heist to steal this dog https://t.co/F33n1hy3LL 1 Guys this is getting so out of hand. We only rate dogs. This is a Galapagos Speed Panda. Pls only send dogs... 10/10 https://t.co/8lpAGaZRFn 1 I've never seen a dog so genuinely happy about a tennis ball. 12/10 s'cute https://t.co/9RYY2NtHDw 1 Meet Grizz. He just arrived. Couldn't wait until Christmas. Worried bc he saw the swastikas on the carpet. 10/10 https://t.co/QBGwYrT7rv 1 This is Callie. She'll be your navigator today. Takes her job very seriously. Will shift for you. One ear always in the pupholder. 12/10 https://t.co/Bh9DtLhIBO 1 When she says she'll be ready in a minute but you've been waiting in the car for almost an hour. 10/10 https://t.co/EH0N3dFKUi 1 This is George. He just remembered that bees are dying globally at an alarming rate. Scary stuff George. 10/10 https://t.co/lznl6QGkYc 1 When your friend is turnt af and you're just trying to chill. 10/10 (vid by @presgang) https://t.co/OufVDk23JC 1 This pupper just wants to say hello. 11/10 would knock down fence for https://t.co/A8X8fwS78x 1 These are some pictures of Teddy that further justify his 13/10 rating. Please enjoy https://t.co/tDkJAnQsbQ 1 After getting lost in Reese's eyes for several minutes we're going to upgrade him to a 13/10 1 This is Combo. The daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/LOKrNo0OM7 1 Meet Maggie & Lila. Maggie is the doggo, Lila is the pupper. They are sisters. Both 12/10 would pet at the same time https://t.co/MYwR4DQKll 1 This is Penny. She's having fun AND being safe. 12/10 very responsible pup https://t.co/eqeWw67oU7 1 This is Winston. His tongue has gone rogue. Doing him quite a frighten. 10/10 hang in there Winston https://t.co/d0QEbp78Yi 1 This is Amy. She is Queen Starburst. 10/10 unexplainably juicy https://t.co/Hj2HtxpcSx 1 PUPDATE: I've been informed that Augie was actually bringing his family these flowers when he tripped. Very good boy. Pupgraded to 11/10 1 Meet Hercules. He can have whatever he wants for the rest of eternity. 12/10 would snug passionately https://t.co/mH0IOyFdIG 1 Meet Sammy. He's a Motorola Firefox. Hat under hoodie (must be a half-decent up and coming white rapper) 10/10 https://t.co/rO2zxf0OQ0 1 This is Stubert. He just arrived. 10/10 https://t.co/HVGs5aAKAn 1 Pause your cookout and admire this pupper's nifty hat. 10/10 https://t.co/RG4C9IdNJM 1 Say hello to Clarence. Clarence thought he saw a squirrel. He was just trying to help. 8/10 poor Clarence https://t.co/tbFaTUHLJB 1 This is Enchilada (yes, that's her real name). She's a Low-Cruisin Plopflopple. Very rare. Only a few left. 12/10 https://t.co/SiaiTWgsfP 1 "Ello this is dog how may I assist" ...10/10 https://t.co/jeAENpjH7L 1 This is Terrenth. He just stubbed his toe. 10/10 deep breaths Terrenth https://t.co/Pg18CDFC7Z 1 This is a southwest Coriander named Klint. Hat looks expensive. Still on house arrest :(\n9/10 https://t.co/IQTOMqDUIe 1 This is Adele. Her tongue flies out of her mouth at random. It's a debilitating illness. 10/10 stay strong pupper https://t.co/cfn81n3FLO 1 RT @dog_rates: This is Bell. She likes holding hands. 12/10 would definitely pet with other hand https://t.co/BXIuvkQO9b 1 Say hello to Axel. He's a Black Chevy Pinot on wheels. 0 to 60 in 5.7 seconds (if downhill). 9/10 I call shotgun https://t.co/DKe9DBnnHE 1 This is Lola. She fell asleep on a piece of pizza. 10/10 frighteningly relatable https://t.co/eqmkr2gmPH 1 These are Peruvian Feldspars. Their names are Cupit and Prencer. Both resemble Rand Paul. Sick outfits 10/10 & 10/10 https://t.co/ZnEMHBsAs1 1 This is Rusty. He's going D1 for sure. Insane vertical. 13/10 would draft https://t.co/AsykOwMrXQ 1 This is Loki. He knows he's adorable. One ear always pupared. 12/10 would snug in depicted fashion forever https://t.co/OqNggd4Oio 1 Say hello to Romeo. He was just told that it's too cold for the pool. H*ckin nonsense. 11/10 would help fill up https://t.co/6hx7ur6sNI 1 @Marc_IRL pixelated af 12/10 1 Here's a brigade of puppers. All look very prepared for whatever happens next. 80/80 https://t.co/0eb7R1Om12 1 13/10\n@ABC7 1 We normally don't rate birds but I feel bad cos this one forgot to fly south for the winter. 9/10 just wants a bath https://t.co/o47yitCn9N 1 This is Alfie. He's your Lyft for tonight. Kindly requests you buckle pup and remain reasonably calm during the ride. 13/10 he must focus https://t.co/AqPTHYUBFz 1 RT @dog_rates: Everyone needs to watch this. 13/10 https://t.co/Bb3xnpsWBC 1 Meet Toby. He has a drinking problem. Inflatable marijuana plant in the back is also not a good look. 7/10 cmon Toby https://t.co/Cim4DSj6Oi 1 This is Ellie AKA Queen Slayer of the Orbs. Very self-motivated. Great yard. Rad foliage. 10/10 would pet diligently https://t.co/c9jmg3Xtzn 1 This is Alice. She's an idiot. 4/10 https://t.co/VQXdwJfkyS 1 This is Mingus. He's a wonderful father to his smol pup. Confirmed 13/10, but he needs your help\n\nhttps://t.co/bVi0Yr4Cff https://t.co/ISvKOSkd5b 1 This is Linda. She just looked up and saw you glancing at your neighboring classmate's test. 10/10 https://t.co/UpFFYhA1Id 1 Meet Reggie. He's going for the world record. Must concentrate. Focus up pup. 11/10 we all believe in you Reggie https://t.co/h3AWz4AzuC 1 This is Eevee. She wants to see how you're doing. Just checkin pup on you. She hopes you're doing okay. 12/10 extremely good girl https://t.co/nqAJGCHKEt 1 RT @dog_rates: This is Carl. He's very powerful. 12/10 don't mess with Carl https://t.co/v5m2bIukXc 1 This is Bradlay. He is a Ronaldinho Matsuyama mix. Can also mountain bike (wow). Loves that blue light lime. 11/10 https://t.co/DKhgkMx4N1 1 This is Oakley. He has no idea what happened here. Even offered to help clean it up. 11/10 such a heckin good boy https://t.co/vT3JM8b989 1 This is Eleanor. She winks like she knows many things that you don't. 12/10 https://t.co/bxGwkJa2kE 1 I have no words. Just a magnificent pup. 12/10 https://t.co/viwWHZgX8j 1 This is Mike. He is a Jordanian Frito Pilates. Frowning because he can't see directly in front of him. 8/10 https://t.co/NL5QJwdEpF 1 RT @dogratingrating: Unoriginal idea. Blatant plagiarism. Curious grammar. -5/10 https://t.co/r7XzeQZWzb 1 Name a more iconic quartet... I'll wait. 13/10 for all https://t.co/kCLgD8687T 1 I can't believe this keeps happening. This, is a birb taking a bath. We only rate dogs. Please only send dogs. Thank you... 12/10 https://t.co/pwY9PQhtP2 1 Pls don't send more sherks. I don't care how seemingly floofy they are. It does me so much frighten. Thank u. 11/10 https://t.co/oQqlOsla4R 1 This is Bruce. I really want to hear the joke he was told. 10/10 for chuckle pup https://t.co/ErPLjjJOKc 1 When your crush won't pay attention to you. Both 10/10 tragic af https://t.co/d3LELGVlqu 1 Happy Saturday here's 9 puppers on a bench. 99/90 good work everybody https://t.co/mpvaVxKmc1 1 This pupper is very passionate about Christmas. Wanted to give the tree a hug. So cute. 8/10 https://t.co/NsGyECJuq7 1 Meet Jax. He's in the middle of a serious conversation and is trying unbelievably hard not to laugh. 10/10 https://t.co/HwiLcDPaCi 1 Pink dogs here. Unreasonably long necks. Left guy has only 1 leg. Quite nimble. Don't bark tho 4/10s would still pet https://t.co/QY5uvMmmQk 1 This is Doc. He takes time out of every day to worship our plant overlords. 12/10 quite the floofer https://t.co/azMneS6Ly5 1 Say hello to Mitch. He thinks that's a hat. Nobody has told him yet. 11/10 please no one tell him https://t.co/7jOPktauh4 1 Say hello to Indie and Jupiter. They're having a stellar day out on the boat. Both 12/10 adorbz af https://t.co/KgSEkrPA3r 1 This is just downright precious af. 12/10 for both pupper and doggo https://t.co/o5J479bZUC 1 After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https://t.co/XAVDNDaVgQ 1 Meet Milo. He hauled ass until he ran out of treadmill and then passed out from exhaustion. 11/10 sleep tight pupper https://t.co/xe1aGZNkcC 1 This is Georgie. He's very shy. Only puppears when called. Aggressively average at fetch. Unique front paws. Looks slippery. 10/10 would pet https://t.co/rcDs5LkiSj 1 I just want to be friends with this dog. Appears to be into the sports. A true brobean. 10/10 would introduce to mom https://t.co/1Z7Q6svWpe 1 Very happy pup here. Always smiling. Loves his little leaf. Carries it everywhere with him. 9/10 https://t.co/81BCQAyvcs 1 This is Kevin. Kevin doesn't give a single h*ck. Will sit in the fountain if he wants to. 13/10 churlish af https://t.co/r6GjO6MbZz 1 This is Wyatt. He's got the fastest paws in the West. H*ckin deadly. 11/10 would ride into the sunset with https://t.co/stkJ377KK7 1 Was just informed about this hero pupper and others like her. Another 14/10, would be an absolute honor to pet https://t.co/hBTzPmj36Z 1 This is Jimothy. He's a Trinidad Poliwhirl. Father was a velociraptor. Exceptionally unamused. 12/10 would adopt https://t.co/VwdIk0OwVx 1 This is Gert. He just wants you to be happy. 11/10 would pat on the head so damn well https://t.co/l0Iwj6rLFW 1 Meet Rodney. He's a Ukranian Boomchicka. Outside but would like to be inside. Only has one ear (unfortunate) 10/10 https://t.co/FjAj3ggXrR 1 This is Solomon. He's a Beneroo Cumberflop. 12/10 would hug passionately https://t.co/5phLAnGPTP 1 This is Jessifer. She is a Bismoth Teriyaki. Flowers being attacked by hurricanes on bandana (rad). 9/10 stellar pup https://t.co/nZhmRwZzWv 1 Say hello to Lupe. This is how she sleeps. 10/10 impressive really https://t.co/Fz6iZWlk8C 1 RT @dog_rates: This is Kyro. He's a Stratocumulus Flop. Tongue ejects at random. Serious h*ckin condition. Still 12/10 would pet passionate… 1 Yes I do realize a rating of 4/20 would've been fitting. However, it would be unjust to give these cooperative pups that low of a rating 1 When you're given AUX cord privileges from the back seat and accidentally start blasting an audiobook... both 10/10 https://t.co/gCCrY8P0K9 1 This is Halo. She likes watermelon. 13/10 https://t.co/TZkiQZqwA6 1 This is Oscar. He's ready for Christmas. 11/10 https://t.co/TON0Irzgwr 1 Never seen dog like this. Breathes heavy. Tilts head in a pattern. No bark. Shitty at fetch. Not even cordless. 1/10 https://t.co/i9iSGNn3fx 1 This is Socks. That water pup w the super legs just splashed him. Socks did not appreciate that. 9/10 and 2/10 https://t.co/8rc5I22bBf 1 This is Cuddles. He's not entirely sure how doors work. 10/10 I believe in you Cuddles https://t.co/rKjK88D05Z 1 This is Bob. He just got back from his job interview and realized his ear was inside-out the whole time. 10/10 https://t.co/lORINwFXIV 1 This is Chip. He's an Upper West Nile Pantaloon. Extremely deadly. Will rip your throat out. 6/10 might still pet https://t.co/LUFnwzznaV 1 Meet Phil. He's big af. Currently destroying this nice family home. Completely uncalled for. 3/10 not a good pupper https://t.co/fShNNhBWYx 1 This is Benedict. He wants to thank you for this delightful urban walk. Hopes you know he loves you. 13/10 super duper good boy https://t.co/26BXueUgbs 1 This is Rey. He's a Benebop Cumberfloof. 12/10 dangerously pettable https://t.co/503CgWbhxQ 1 This is Churlie. He likes bagels. 10/10 https://t.co/k8P6FZlzAG 1 Say hello to Anna and Elsa. They fall asleep in similar positions. It's pretty wild. Both 12/10 would snug simultaneously https://t.co/8rUL99bX4W 1 Please enjoy this picture as much as I did. 12/10 https://t.co/7u8mM99Tj5 1 This is Kenny. He just wants to be included in the happenings. 11/10 https://t.co/2S6oye3XqK 1 @jonnysun @Lin_Manuel ok jomny I know you're excited but 960/00 isn't a valid rating, 13/10 is tho 1 Say hello to Boomer. He's a sandy pupper. Having a h*ckin blast. 12/10 would pet passionately https://t.co/ecb3LvExde 1 This is Ozzy. He's acrobatic af. Legendary pupper status achieved. 13/10 https://t.co/gHWsCTu90E 1 Everyone please just appreciate how perfect these two photos are. 12/10 for both https://t.co/rLf7asnHxO 1 This... is a Tyrannosaurus rex. We only rate dogs. Please only send in dogs. Thank you ...10/10 https://t.co/zxw8d5g94P 1 Meet Milo and Amos. They are the best of pals. Both 12/10 would pet at the same time https://t.co/Mv37BHEyyD 1 This is Earl. Earl is lost. Someone help Earl. He has no tags. Just trying to get home. 5/10 hang in there Earl https://t.co/1ZbfqAVDg6 1 *internally screaming* 12/10 https://t.co/YMcrXC2Y6R 1 This is Kyle. He made a joke about your shoes, then stuck his tongue out at you. Uncalled for. Step the h*ck up Kyle. 11/10 would forgive https://t.co/hLQ2Ilg2uN 1 RT @dog_rates: Oh. My. God. 13/10 magical af https://t.co/Ezu6jQrKAZ 1 Everybody stop what you're doing and watch these puppers enjoy summer. Both 13/10 https://t.co/wvjqSCN6iC 1 RT @dog_rates: We normally don't rate marshmallows but this one appears to be flawlessly toasted so I'll make an exception. 10/10 https://t… 1 Striped dog here. Having fun playing on back. Sturdy paws. Looks like an organized Dalmatian. 7/10 would still pet https://t.co/U1mSS3Ykez 1 This lil pupper is sad because we haven't found Kony yet. RT to spread awareness. 12/10 would pet firmly https://t.co/Cv7dRdcMvQ 1 This is Dakota. He's just saying hi. That's all. 12/10 someone wave back https://t.co/1tWe5zZoHv 1 Here we have a mixed Asiago from the Galápagos Islands. Only one ear working. Big fan of marijuana carpet. 8/10 https://t.co/tltQ5w9aUO 1 RT @dog_rates: This is Paisley. She really wanted to be president this time. Dreams officially crushed. 13/10 https://t.co/liJGwMp17E 1 This is Koda. He has a weird relationship with tall grass. Slightly concerning. 11/10 would def still pet https://t.co/KQzSR8eCsw 1 Meet Penelope. She is a white Macadamias Duodenum. Very excited about wall. Lives on Frosted Flakes. 11/10 good pup https://t.co/CqcRagJlyS 1 Happy Wednesday here's a bucket of pups. 44/40 would pet all at once https://t.co/HppvrYuamZ 1 This little pupper just arrived. 11/10 would snug https://t.co/DA5aqnSGfB 1 "Yes hello I'ma just snag this here toasted bagel real quick. carry on." 9/10 https://t.co/Cuz0Osnekp 1 Ermergerd 12/10 https://t.co/PQni2sjPsm 1 This pupper just descended from heaven. 12/10 can probably fly https://t.co/X6X9wM7NuS 1 This is Mabel. She's super h*ckin smol. Portable af. Comes with the smol shoe. 12/10 would keep in frocket https://t.co/GGJvxYt3xK 1 This is Lucy. She doesn't understand fetch. 8/10 try turning off and back on (vid by @rileyyoungblood) https://t.co/RXjEwpVJf0 1 Say hello to Jazz. She should be on the cover of Vogue. 12/10 gorgeous pupper https://t.co/mVCMemhXAP 1 @markhoppus 182/10 1 holy shit 12/10 https://t.co/p6O8X93bTQ 1 Here we are witnessing an isolated squad of bouncing doggos. Unbelievably rare for this time of year. 11/10 for all https://t.co/CCdlwiTwQf 1 We only rate dogs. Please stop sending in non-canines like this Freudian Poof Lion. This is incredibly frustrating... 11/10 https://t.co/IZidSrBvhi 1 This is Sansa. She's gotten too big for her chair. Not so smol anymore. 11/10 once a pupper, always a pupper https://t.co/IpAoztle2s 1 Yea I can't handle this job anymore your dogs are too adorable. 12/10 https://t.co/N9W5L7BLTm 1 Meet Boomer. He's just checking pup on you. Hopes you had a good day. If not, he hopes he made it better. 13/10 extremely good boy https://t.co/pozUoHLkGg 1 The 13/10 also takes into account this impeccable yard. Louis is great but the future dad in me can't ignore that luscious green grass 1 This is Sierra. She's one precious pupper. Absolute 12/10. Been in and out of ICU her whole life. Help Sierra below\n\nhttps://t.co/Xp01EU3qyD https://t.co/V5lkvrGLdQ 1 This is Kingsley Wellensworth III. He owns 7 range rovers. Has a cardigan collection. Would rather be sailing. 9/10 https://t.co/BE4ahQ0IO2 1 RT @dog_rates: This is Charlie. He fell asleep on a heating vent. Would puppreciate your assistance. 11/10 someone help Charlie https://t.c… 1 This is Finn. He's the most unphotogenic pupper of all time. 11/10 https://t.co/qvA2rCUl6v 1 This is Stella. She's happier than I will ever be. 10/10 would trade lives with https://t.co/JSs2bfDtTS 1 RT @dog_rates: This is Ken. His cheeks are magic. 13/10 (IG: ken_shiba) https://t.co/btzf1zTDeQ 1 This is Lou. He's a Petrarch Sunni Pinto. Well-behaved pup. Little legs just hang there. 10/10 would pet firmly https://t.co/FoCULrC3rD 1 Please stop sending in non canines like this Guatemalan Twiggle Bunny. We only rate dogs. Only send in dogs... 11/10 https://t.co/XKhobeGuvT 1 This is Spark. He's nervous. Other dog hasn't moved in a while. Won't come when called. Doesn't fetch well 8/10&1/10 https://t.co/stEodX9Aba 1 This is Opal. He's a Royal John Coctostan. Ready for transport. Basically indestructible. 9/10 good pupper https://t.co/yRBQF9OS7D 1 RT @dog_rates: This is Stephan. He just wants to help. 13/10 such a good boy https://t.co/DkBYaCAg2d 1 This is Lipton. He's a West Romanian Snuggle Pup. Only a few left of his kind. 12/10 would boop https://t.co/5KmXPIGgAG 1 This is Betty. She's assisting with the dishes. Such a good puppo. 12/10 h*ckin helpful af https://t.co/dgvTPZ9tgI 1 This is Louis. He's takes top-notch selfies. 12/10 would snapchat with https://t.co/vz2DukO0th 1 This is Chuckles. He had a balloon but he accidentally let go of it and it floated away. 11/10 hang in there pupper https://t.co/68iNM7B5gW 1 This is Bella. She had her first beach experience this morning. Complete success. 12/10 would perform a sandy boop https://t.co/4VsFysDmiw 1 This is Jesse. He really wants a belly rub. Will be as cute as possible to achieve that goal. 11/10 https://t.co/1BxxcdVNJ8 1 This is Reggie. He hugs everyone he meets. 12/10 keep spreading the love Reggie https://t.co/uMfhduaate 1 This is Noah. He can't believe someone made this mess. Got the vacuum out for you though. Offered to help clean pup. 12/10 super good boy https://t.co/V85xujjDDY 1 I present to you, Pup in Hat. Pup in Hat is great for all occasions. Extremely versatile. Compact as h*ck. 14/10 (IG: itselizabethgales) https://t.co/vvBOcC2VdC 1 Unique dog here. Wrinkly as hell. Weird segmented neck. Finger on fire. Doesn't seem to notice. 5/10 might still pet https://t.co/Hy9La4xNX3 1 RT @dog_rates: This is Oakley. He has no idea what happened here. Even offered to help clean it up. 11/10 such a heckin good boy https://t.… 1 This is Clark. He collects teddy bears. It's absolutely h*ckin horrifying. 8/10 please stop this Clark https://t.co/EDMcwt86fU 1 Meet Humphrey. He's a Northern Polyp Viagra. One ear works. Face stuck like that. Always surprised. 9/10 petable af https://t.co/FS7eJQM2F4 1 RT @dog_rates: "Tristan do not speak to me with that kind of tone or I will take away the Xbox." 10/10 https://t.co/VGPH0TfESw 1 This left me speechless. 14/10 heckin heroic af https://t.co/3td8P3o0mB 1 This is Rooney. He can't comprehend glass. 10/10 it'll be ok pupper https://t.co/CnUl2uDBBV 1 This is Winston. His selfie game is legendary. Will steal your girl with a single snap. 11/10 handsome as h*ck https://t.co/jxQhxoPsgL 1 This is Luther. He saw a ghost. Spooked af. 11/10 hang in there pupper https://t.co/EdKG43VvEl 1 This is Beebop. Her name means "Good Dog" in robot. She also was a star on the field today. 13/10 would pet well https://t.co/HKBVZqXFNR 1 This is Jomathan. He is not thrilled about the length of the grass. 10/10 https://t.co/TIhVKEIPqj 1 RT @dog_rates: This is Ruby. She just turned on the news. Officially terrified. 11/10 deep breaths Ruby https://t.co/y5KarNXWXt 1 RT @dog_rates: Meet Shadow. In an attempt to reach maximum zooming borkdrive, he tore his ACL. Still 13/10 tho. Help him out below\n\nhttps:/… 1 This is Bert. He likes flowers. 10/10 https://t.co/lmQRrNxaQu 1 This is Gromit. He's pupset because there's no need to beware of him. Just wants a pettin. 10/10 https://t.co/eSvz4EapHH 1 This is Jordy. He likes to go on adventures and watch the small scaly underwater dogs with fins pass him by. 12/10 peaceful as h*ck https://t.co/xJo6S2sfsN 1 Exotic dog here. Long neck. Weird paws. Obsessed with bread. Waddles. Flies sometimes (wow!). Very happy dog. 6/10 https://t.co/rqO4I3nf2N 1 This is Stanley. Somehow he heard you tell him he's a good boy from all the way up there. 13/10 I love you Stanley https://t.co/51FXNuouHI 1 Meet Joey and Izzy. Joey only has one ear that works and Izzy wants 2015 to be over already. Both great pups. 11/10s https://t.co/WgQTIQ93BB 1 Say hello to Olive and Ruby. They are best buddies. Both 11/10 \n1 like = 1 buddy https://t.co/yagmFdKlyL 1 This is Pippa. She managed to start the car but is waiting for you to buckle up before driving. Responsible af 11/10 https://t.co/htrlmC7saz 1 Meet Benny. He likes being adorable and making fun of you while you're on the trampoline. 12/10 let's help him out\n\nhttps://t.co/aVMjBqAy1x https://t.co/7gx2LksT3U 1 This is Zooey. She's the world's biggest fan of illiterate delivery people. 13/10 not your fault they don't listen, Zooey https://t.co/ixOFQ1tfqE 1 This is Penny. She's both pupset and fired pup. Not pleased w your barbaric attempts at cleanliness. 12/10 would enjoy more shampoo options https://t.co/OYdDlfOGXP 1 Say hello to Bentley and Millie. They do everything together. Besties forever. Both 11/10 https://t.co/vU3tKr4vTn 1 RT @dog_rates: This... is a Tyrannosaurus rex. We only rate dogs. Please only send in dogs. Thank you ...10/10 https://t.co/zxw8d5g94P 1 This is Clarence. His face says he doesn't want to be a donkey, but his tail is super pumped about it. 9/10 https://t.co/fGDWgukcBs 1 Say hello to Buddah. He was Waldo for Halloween. 11/10 https://t.co/DVAqAnb624 1 Meet Jax. He's an Iglesias Hufflepoof. Quite the jokester. Takes it too far sometimes. Can be very hurtful. 9/10 https://t.co/i5TeG0KYcW 1 Here we have a basking dino pupper. Looks powerful. Occasionally shits eggs. Doesn't want the holidays to end. 5/10 https://t.co/DnNweb5eTO 1 This is Gus. He's super stoked about being an elephant. Couldn't be happier. 9/10 for elephant pupper https://t.co/gJS1qU0jP7 1 This is Wallace. He'll be your chau-fur this evening. 12/10 eyes on the road Wallace https://t.co/p1RD39XjUe 1 This is Timofy. He's a pilot for Southwest. It's Christmas morning & everyone has gotten kickass gifts but him. 9/10 https://t.co/3FuNbzyPwo 1 This is Odie. He's big. 13/10 would attempt to ride https://t.co/JEXB9RwBmm 1 Meet Charlie. He likes to kiss all the big milk dogs with the rad earrings. Passionate af. 10/10 just a great guy https://t.co/Oe0XSGmfoP 1 This is a Rich Mahogany Seltzer named Cherokee. Just got destroyed by a snowball. Isn't very happy about it. 9/10 https://t.co/98ZBi6o4dj 1 Meet Lambeau. He's a Whistling Haiku from the plains of southern Guatemala. 11/10 so. damn. majestic. https://t.co/UqCvpSgMJe 1 This is a Deciduous Trimester mix named Spork. Only 1 ear works. No seat belt. Incredibly reckless. 9/10 still cute https://t.co/CtuJoLHiDo 1 This is Bookstore and Seaweed. Bookstore is tired and Seaweed is an asshole. 10/10 and 7/10 respectively https://t.co/eUGjGjjFVJ 1 This is Barry. He's very fast. I hope he finds what he's looking for. 10/10 (vid by @KeeganWolfe33) https://t.co/nTAsyvbIiO 1 This is Sweets the English Bulldog. Waves back to other bikers. 12/10 just a fantastic friendly pupper https://t.co/WYiFzuX7D4 1 We 👏🏻 only 👏🏻 rate 👏🏻 dogs. Pls stop sending in non-canines like this Dutch Panda Worm. This is infuriating. 11/10 https://t.co/odfLzBonG2 1 12/10 @LightningHoltt 1 This is Juckson. He's totally on his way to a nascar race. 5/10 for Juckson https://t.co/IoLRvF0Kak 1 Meet Baloo. He's expecting a fast ground ball, hence the wide stance. Prepared af. 11/10 nothing runs like a pupper https://t.co/sMbMw5Z2XC 1 This is Riley. She's just an adorable football fan. 12/10 I'd watch the sports with her https://t.co/kLV8zUCfc8 1 "AND IIIIIIIIIIIEIIIIIIIIIIIII WILL ALWAYS LOVE YOUUUUU" 11/10 https://t.co/rSNCEiTtfI 1 Say hello to Aiden. His eyes are magical. Loves his little Guy Fieri friend. Sneaky tongue slip. 11/10 would caress https://t.co/Ac37LOe3xD 1 Guys this was terrifying. Really spooked me up. We don't rate ghosts. We rate dogs. Please only send dogs... 9/10 https://t.co/EJImi1udYb 1 This is Winston. The goggles make him a superhero. Protects the entire city from criminals unless they rub his belly really well. 12/10 https://t.co/yCydYURYEL 1 Here we see a lone northeastern Cumberbatch. Half ladybug. Only builds with bricks. Very confident with body. 7/10 https://t.co/7LtjBS0GPK 1 This is Bones. He's being haunted by another doggo of roughly the same size. 12/10 deep breaths pupper everything's fine https://t.co/55Dqe0SJNj 1 When your teacher agreed on 10,000 RTs and no final but after 24 hours you only have 37... 10/10 https://t.co/sVnJfWVjUp 1 This is Devón (pronounced "Eric"). He forgot how to eat the apple halfway through. Wtf Devón get it together. 8/10 https://t.co/7waRPODGyO 1 This pupper likes tape. 12/10 https://t.co/cSp6w5GWgm 1 This is Albert. He just found out that bees are dying globally at an alarming rate. 10/10 heckin worried af now https://t.co/nhLX27WsDY 1 Meet Bonaparte. He's pupset because it's cloudy at the beach. Can't take any pics for his Instagram. 11/10 https://t.co/0THNOfv2Jo 1 This is the newly formed pupper a capella group. They're just starting out but I see tons of potential. 8/10 for all https://t.co/wbAcvFoNtn 1 This is Albus. He's quite impressive at hide and seek. Knows he's been found this time. 13/10 usually elusive as h*ck https://t.co/ht47njyZ64 1 I'm happy to inform you all that Jake is in excellent hands. 13/10 for him and his new family \nhttps://t.co/LRCTJpnCnS https://t.co/wZz7fI6XO1 1 This is Spanky. He was a member of the 2002 USA Winter Olympic speed skating team. Accomplished af. 12/10 https://t.co/7tlZPrePXd 1 This is Jareld. Jareld rules these waters. Ladies and Gentleman... 13/10. This dog is utterly fucking spectacular. https://t.co/L6qAEV5PAd 1 These two pups are masters of camouflage. Very dedicated to the craft. Both must've spent decades practicing. 10/10s https://t.co/RBiQ8hPqwr 1 This is Jiminy. He's not the brightest dog. Needs to lay off the kibble. 5/10 still petable https://t.co/omln4LOy1x 1 When you hear your owner say they need to hatch another egg, but you've already been on 17 walks today. 10/10 https://t.co/lFEoGqZ4oA 1 This is a western brown Mitsubishi terrier. Upset about leaf. Actually 2 dogs here. 7/10 would walk the shit out of https://t.co/r7mOb2m0UI 1 This is Layla. It is her first Christmas. She got to be one of the presents. 12/10 I wish my presents would bark https://t.co/hwhCbhCjnV 1 Hooman catch successful. Massive hit by dog. Fumble ensued. Possession to dog. 13/10 https://t.co/QrFkqgHR1G 1 "I wish we were dogs" 14/10 for @BadlandsNPS https://t.co/50qq2DItPW 1 We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\nhttps://t.co/XQlmPTLHPl https://t.co/ZNIkkHgtYE 1 This is Elliot. He's blocking the roadway. Downright rude as hell. Doesn't care that you're already late. 3/10 https://t.co/FMUxir5pYu 1 "You got any games on your phone" 7/10 for invasive brown Dalmatian pupper https://t.co/yzGR9xjE9Q 1 This is the happiest dog you will ever see. Very committed owner. Nice couch. 10/10 https://t.co/RhUEAloehK 1 This is Kilo. He's a Pouncing Brioche. Really likes snow. 11/10 https://t.co/GS76SfkraY 1 This is Loki. He'll do your taxes for you. Can also make room in your budget for all the things you bought today. 12/10 what a puppo https://t.co/5oWrHCWg87 1 This is Perry. He's an Augustus Gloopster. Very condescending. Makes up for it with the sneaky tongue slip. 11/10 https://t.co/JVvIrUmTkR 1 This is Stanley. Yes he is aware of the spoon's presence, he just doesn't know what he should do about it. 10/10 https://t.co/gQAMg5ypW5 1 This is Wilson. He's aware that he has something on his face. Waiting for you to get it for him. 12/10 https://t.co/FaeinVjzTZ 1 Just got home from college. Dis my dog. She does all my homework. Big red turd in background. 13/10 no bias at all https://t.co/6WGFp9cuj6 1 Here is a very happy pup. Big fan of well-maintained decks. Just look at that tongue. 9/10 would cuddle af https://t.co/y671yMhoiR 1 Looks like he went cross-eyed trying way too hard to use the force. 12/10 \nhttps://t.co/bbuKxk0fM8 1 This is Chelsea. She forgot how to dog. 11/10 get it together pupper https://t.co/nBJ5RE4yHb 1 This is Jerry. He's doing a distinguished tongue slip. Slightly patronizing tbh. You think you're better than us, Jerry? 6/10 hold me back https://t.co/DkOBbwulw1 1 This pupper is not coming inside until she catches a snowflake on her tongue. 11/10 the determination is palpable https://t.co/lvMYbmKq8H 1 "Hi yes this is dog. I can't help with that s- sir please... the manager isn't in right n- well that was rude"\n10/10 https://t.co/DuQXATW27f 1 We only rate dogs. Please stop sending in your 31 year old sons that won't get out of your house. Thank you... 11/10 https://t.co/aTU53NNUkt 1 Hooman used Pokeball\n*wiggle*\n*wiggle*\nDoggo broke free \n10/10 https://t.co/bWSgqnwSHr 1 This is Sailer. He waits on the roof for his owners to come home. Nobody knows how he gets up there. H*ckin loyal af. 13/10 https://t.co/O37z4jaMG9 1 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10s https://t.co/GK2HJtkdQk 1 This is Chadrick. He's gnarly af 13/10 https://t.co/447tyBN0mW 1 This is Rodman. He's getting destroyed by the surfs. Valiant effort though. 10/10 better than most puppers probably https://t.co/S8wCLemrNb 1 Oh goodness. A super rare northeast Qdoba kangaroo mix. Massive feet. No pouch (disappointing). Seems alert. 9/10 https://t.co/Dc7b0E8qFE 1 This is Brockly. He's an uber driver. Falls asleep at the wheel often. Irresponsible af 8/10 would totally still pet https://t.co/fn1oUlS69Z 1 RT @dog_rates: This is Seamus. He's very bad at entering pools. Still a very good boy tho 11/10 https://t.co/hfi264QwYM 1 Here's a doggo realizing you can stand in a pool. 13/10 enlightened af (vid by Tina Conrad) https://t.co/7wE9LTEXC4 1 Elder doggo does a splash. Both 13/10 incredible stuff https://t.co/gBUDjdEcqz 1 RT @ChinoChinako: They're good products, Brent\n\nMug holds drinks; hoodie is comfy af. 13/10 \n\nPuppy Aika h*cking agrees. @dog_rates https:/… 1 This is an Iraqi Speed Kangaroo. It is not a dog. Please only send in dogs. I'm very angry with all of you ...9/10 https://t.co/5qpBTTpgUt 1 I'm aware that I could've said 20/16, but here at WeRateDogs we are very professional. An inconsistent rating scale is simply irresponsible 1 This is Louis. He's a river dancer. His friends think it's badass. All are very supportive. 10/10 for Louis https://t.co/qoIvjKMY58 1 This is Herald. He wants you to know he could steal your girl at any moment. 10/10 https://t.co/JR7hLnlgeS 1 Say hello to Lassie. She's celebrating #PrideMonth by being a splendid mix of astute and adorable. Proudly supupporting her owner. 13/10 https://t.co/uK6PNyeh9w 1 Have you ever seen such a smol pupper? Portable af. 12/10 would keep in shirt pocket https://t.co/KsqaIzlQ12 1 This is Brandi and Harley. They are practicing their caroling for later. Both 12/10 festive af https://t.co/AbBDuGZUpp 1 Guys pls stop sending actual sharks. It's too dangerous for me and the people taking the photos. Thank you ...10/10 https://t.co/12lICZN2SP 1 This pupper got her hair chalked for her birthday. Hasn't told her parents yet. Rebellious af. 11/10 very nifty https://t.co/h1OX2mLtxV 1 RT @dog_rates: This is Happy. He's a bathtub reviewer. Seems to be pleased with this one. 12/10 https://t.co/Ln89R4FP7v 1 This is Nelly. He really hopes you like his Hawaiian shirt. He already tore the tags off. 13/10 h*ck of a puppurchase https://t.co/LbkG5CiM7o 1 Can stand on stump for what seems like a while. Built that birdhouse? Impressive. Made friends with a squirrel. 8/10 https://t.co/Ri4nMTLq5C 1 This is Chef. Chef loves everyone and wants everyone to love each other. 11/10 https://t.co/ILHGs0e6Dm 1 Guys this really needs to stop. We've been over this way too many times. This is a giraffe. We only rate dogs.. 7/10 https://t.co/yavgkHYPOC 1 This is one esteemed pupper. Just graduated college. 10/10 what a champ https://t.co/nyReCVRiyd 1 This is Smokey. He really likes tennis balls. 11/10 https://t.co/Ah7WlYTUBQ 1 Here is Atlas. He went all out this year. 13/10 downright magical af https://t.co/DVYIZOnO81 1 This is Mary. She's desperately trying to recreate her Coachella experience. 12/10 downright h*ckin adorable https://t.co/BAJrfPvtux 1 This is Sunshine. She doesn't believe in personal space. Eyes pretty far apart for a dog. Has horns (whoa). 11/10 would pet with wonder https://t.co/o3bhLguymB 1 This is Marty. He has no idea what happened here. Never seen this stuff in his life. 9/10 very suspicious pupper https://t.co/u427woxFpJ 1 This is Bella. She hopes her smile made you smile. If not, she is also offering you her favorite monkey. 13.5/10 https://t.co/qjrljjt948 1 This is Tyr. He's just checking on you. Nifty af tongue slip. 12/10 would absolutely pet https://t.co/Jgnuiyvq06 1 This is a mighty rare blue-tailed hammer sherk. Human almost lost a limb trying to take these. Be careful guys. 8/10 https://t.co/TGenMeXreW 1 This is Scout. He just graduated. Officially a doggo now. Have fun with taxes and losing sight of your ambitions. 12/10 would throw cap for https://t.co/DsA2hwXAJo 1 This is Sebastian. He can't see all the colors of the rainbow, but he can see that this flag makes his human happy. 13/10 #PrideMonth puppo https://t.co/XBE0evJZ6V 1 This is Ralphy. His dreams were just shattered. Poor pupper. 13/10 it'll be ok Ralphy https://t.co/P0kSN6rT6H 1 Say hello to Hall and Oates. Oates is winking and Hall is contemplating the artistic entropy of the universe. 11/10s https://t.co/n5Wtb5Hvsl 1 Say hello to Reggie. He hates puns. 12/10 lighten pup Reggie https://t.co/X4vNEzAod5 1 This is Carper. He's a Tortellini Angiosperm. In desperate need of a petting. 11/10 would hug softly https://t.co/lK9YDkRzPj 1 This is Atticus. He's remaining calm but his costume looks terrified. 11/10 https://t.co/uT7QeZI34U 1 This is Chase. He's in a predicament. 9/10 help is on the way buddy https://t.co/0HmBk5sSbW 1 @docmisterio account started on 11/15/15 1 This is Snoopy. He's a proud #PrideMonthPuppo. Impeccable handwriting for not having thumbs. 13/10 would love back #PrideMonth https://t.co/lNZwgNO4gS 1 @NonWhiteHat @MayhewMayhem omg hello tanner you are a scary good boy 12/10 would pet with extreme caution 1 This pupper was about to explain where that dirt came from but then decided against it. 11/10 https://t.co/SbaelU6zRs 1 This is a taco. We only rate dogs. Please only send in dogs. Dogs are what we rate. Not tacos. Thank you... 10/10 https://t.co/cxl6xGY8B9 1 When you watch your owner call another dog a good boy but then they turn back to you and say you're a great boy. 13/10 https://t.co/v0nONBcwxq 1 This is Chet. He's dapper af. His owners want him to learn how to dance but his true passion is potato guns. 11/10 https://t.co/TBv7Qh1zxZ 1 RT @dog_rates: Meet Herschel. He's slightly bigger than ur average pupper. Looks lonely. Could probably ride 7/10 would totally pet https:/… 1 This is Jangle. She's addicted to broccoli. It's the only thing she cares about. Tragic af. 8/10 get help pup https://t.co/8dNWp1cSEa 1 13/10 hero af\n@ABC 1 This is Charles. He's a Nova Scotian Towel Pouncer. Deadly af. Nifty tongue slip. 11/10 would pet with caution https://t.co/EfejX3iRGr 1 This is Reese. He's a Chilean Sohcahtoa. Loves to swing. Never sure what to do with his feet. 12/10 huggable af https://t.co/VA6jnNUyuW 1 This is Kirby. His bowl weighs more than him. 12/10 would assist https://t.co/UlB2mzw3Xs 1 Meet Clarence. He does parkour. 8/10 very talented dog https://t.co/WpSFZm7RPH 1 This is Scooter and his son Montoya. Scooter is a wonderful father. He takes very good care of Montoya. Both 12/10 would pet at same time https://t.co/ghqMfxxa4V 1 This is Toffee. He's a happy pupper. Appears dangerously fluffy. Extraordinarily spherical. 12/10 would pet firmly https://t.co/oEXEKt3MHu 1 This is Tove. She's a Balsamic Poinsetter. Surprisingly deadly. 12/10 snug with caution https://t.co/t6RvnVEdRR 1 This is Crawford. He's quite h*ckin good at the selfies. Nose is incredibly boopable. 11/10 would snapchat https://t.co/6F5Rrp472U 1 After much debate this dog is being upgraded to 10/10. I repeat 10/10 1 This is Kilo. He cannot reach the snackum. Nifty tongue, but not nifty enough. 10/10 maybe one day puppo https://t.co/gSmp31Zrsx 1 Say hello to Sora. She's an Egyptian Pumpernickel. Mesmerizing af. 12/10 would bring home to mom https://t.co/PmTR4kxZkq 1 This is Toby. He just found out you only pretend to throw the ball sometimes. H*ckin puppalled. 12/10 would console https://t.co/YimNdkZrhM 1 Meet Taco. He's a speckled Garnier Fructis. Loves to shadow box. Ears out of control. Friend clearly impressed 9/10 https://t.co/85X1GHohFr 1 Doggo want what doggo cannot have. Temptation strong, dog stronger. 12/10 https://t.co/IqyTF6qik6 1 RT @dog_rates: Meet Moose. He doesn't want his friend to go back to college. 13/10 looks like you're staying home John https://t.co/LIhmM7i… 1 Touching scene here. Really stirs up the emotions. The bond between father & son. So beautiful. 10/10 for both pups https://t.co/AJWJHov5gx 1 We only rate dogs... this is a Taiwanese Guide Walrus. Im getting real heckin tired of this. Please send dogs. 10/10 https://t.co/49hkNAsubi 1 This is Major. He put on a tie for his first real walk. Only a little crooked. Can also drool upwards. H*ckin talented. 12/10 https://t.co/Zcwr8LgoO8 1 This is Churlie. AKA Fetty Woof. Lost eye saving a school bus full of toddlers from a tsunami. Great guy. 10/10 https://t.co/li2XYBVuAY 1 Super rare dog right here guys. Doesn't bark. Seems strong. Blue. Very family friendly pet. 10/10 overall good dog https://t.co/Jykq2iq3qN 1 When she says you're a good boy and you know you're a good boy because you're a good boy. 13/10 https://t.co/O5IUmRHRIh 1 Happy Saturday here's a dog in a mailbox. 12/10 https://t.co/MM7tb4HpEY 1 Meet Horace. He was practicing his levitation, minding his own business when a rogue tennis ball spooked him. 10/10 https://t.co/tB9xYjMyZd 1 Meet Lucia. She's a Cumulonimbus Floofmallow. Only has two legs tho (unfortunate). 11/10 would definitely still pet https://t.co/qv6qlEUCEe 1 RT @dog_rates: I'm not sure what this dog is doing but it's pretty inspirational. 12/10 https://t.co/4Kn9GEHXiE 1 @TheEllenShow I'm not sure if you know this but that doggo right there is a 12/10 1 This is Jerry. He's a neat dog. No legs (tragic). Has more horns than a dog usually does. Bark is unique af. 5/10 https://t.co/85q7xlplsJ 1 This is Coleman. Somebody needs to tell him that he's sitting in chairs wrong. 8/10 https://t.co/O10zjJ2Ixs 1 In honor of the new Star Wars movie. Here's Yoda pug. 12/10 pet really well, would I https://t.co/pvjdRn00XH 1 Say hello to Leo. He's a Fallopian Puffalope. Precious af. 12/10 would cuddle https://t.co/LZEi0DpRsH 1 This is Arlo. He's officially the king of snowy tongue slips. 13/10 would comfort during inevitable brain freeze https://t.co/oXVu9pNZZv 1 This pup's name is Sabertooth (parents must be cool). Ears for days. Jumps unannounced. 9/10 would pet diligently https://t.co/iazoiNUviP 1 Heartwarming scene of two pups that want nothing more than to be together. Touching af. Great tongue. Both 11/10 https://t.co/k32mSlRx0j 1 @RealKentMurphy 14/10 confirmed 1 Never seen a shark hold another shark like this before. Must be evolving. Both 10/10 please only send dogs though https://t.co/x4IUNKV79Y 1 This is Cooper. He's just so damn happy. 10/10 what's your secret puppo? https://t.co/yToDwVXEpA 1 Why does this never happen at my front door... 165/150 https://t.co/HmwrdfEfUE 1 NAAAAAAA ZAPENYAAAAA MABADI-CHIBAWAAA 12/10 https://t.co/Ny4iM6FDtz 1 This is Keet. He is a Floridian Amukamara. Absolutely epic propeller hat. Pristine tongue. Nice plaid. 10/10 https://t.co/tz1lpuvXLA 1 WeRateDogs stickers are here and they're 12/10! Use code "puppers" at checkout 🐶🐾\n\nShop now: https://t.co/k5xsufRKYm https://t.co/ShXk46V13r 1 Here we have an Azerbaijani Buttermilk named Guss. He sees a demon baby Hitler behind his owner. 10/10 stays alert https://t.co/aeZykWwiJN 1 We usually don't rate polar bears but this one seems extra good. Majestic as h*ck. 13/10 would hug for a while https://t.co/TLNexlqzXP 1 This is Kial. Kial is either wearing a cape, which would be rad, or flashing us, which would be rude. 10/10 or 4/10 https://t.co/8zcwIoiuqR 1 Here we are witnessing a wild field pupper. Lost his wallet in there. Rather unfortunate. 10/10 good luck pup https://t.co/sZy9Co74Bw 1 This is Rosie. She was just informed of the walk that's about to happen. Knows there are many a stick along the way. 12/10 such excite https://t.co/sOl7cFaP5X 1 RT @dog_rates: This is Rizzy. She smiles a lot. 12/10 contagious af https://t.co/TU4sZogVIq 1 Oh my this spooked me up. We only rate dogs, not happy ghosts. Please send dogs only. It's a very simple premise. Thank you... 13/10 https://t.co/M5Rz0R8SIQ 1 This is Carll. He wants to be a donkey. But also a soccer star. Dreams big. 10/10 https://t.co/SVpNbhaIMk 1 Meet Dug. Dug fucken loves peaches. 8/10 https://t.co/JtA1TG21Xx 1 This is Bilbo. He's not emotionally prepared to enter the water. 11/10 don't struggle Bilbo https://t.co/rH9SQgZUnQ 1 This is Spencer. He's part of the Queen's Guard. Takes his job very seriously. 11/10 https://t.co/8W5iSOgXfx 1 This is Chip. He's a pupholder. Comes with the car. Requires frequent pettings. Shifts for you. 10/10 innovative af https://t.co/hG5WYT9ECn 1 Say hello to Sadie. She's a Tortellini Sidewinder. Very jubilant pup. Seems loyal. Leaves on point. 10/10 petable af https://t.co/g2bTu4ayPl 1 Large blue dog here. Cool shades. Flipping us off w both hands. Obviously a preteen. 3/10 for rude blue preteen pup https://t.co/mcPd5AFfhA 1 This is Jack AKA Stephen Furry. You're not scoring on him. Unless he slips down the slide. 12/10 would happily get blocked by https://t.co/0gOi601EAa 1 This is Alfie. That is his time machine. He's very proud of it. Without him life as we know it would not exist 11/10 https://t.co/530Yfbl5xo 1 This is Jackie. She was all ready to go out, but her friends just cancelled on her. 10/10 hang in there Jackie https://t.co/rVfi6CCidK 1 This is Kirby. He's a Beneblip Cumberpat. Pretty heckin rare. 11/10 would put my face against his face https://t.co/fd6uucghY6 1 Remarkable dog here. Walks on back legs really well. Looks extra soft. 8/10 would cuddle with https://t.co/gpWLdbposg 1 We only rate dogs. Pls stop sending in non-canines like this Arctic Floof Kangaroo. This is very frustrating. 11/10 https://t.co/qlUDuPoE3d 1 This is Romeo. He would like to do an entrance. Requesting your immediate assistance. 13/10 https://t.co/Qh5aEkRQm9 1 Real funny guys. Sending in a pic without a dog in it. Hilarious. We'll rate the rug tho because it's giving off a very good vibe. 11/10 https://t.co/GCD1JccCyi 1 I call this one "A Blep by the Sea" 12/10 https://t.co/EMdnCugNbo 1 @SkyWilliams doggo simply protecting you from evil that which you cannot see. 11/10 would give extra pets 1 Meet Moe. He's a golden Fetty Woof. Doesn't respect the authorities. Might own a motorhome? 10/10 revolutionary pup https://t.co/JAncIdNp8G 1 Meet Gary, Carrie Fisher's dog. Idk what I can say about Gary that reflects the inspirational awesomeness that was Carrie Fisher. 14/10 RIP https://t.co/uBnQTNEeGg 1 This is Bailey. She loves going down slides but is very bad at it. Still 11/10 https://t.co/ivPWhspN3E 1 When you're presenting a group project and the 4th guy tells the teacher that he did all the work. 10/10 https://t.co/f50mbB4UWS 1 This is Edgar. He's a Sassafras Puggleflash. Nothing satisfies him. Not since the war. 10/10 cheer up pup https://t.co/1NgMb9BTWB 1 This is Curtis. He's an Albino Haberdasher. Terrified of dandelions. They really spook him up. 10/10 it'll be ok pup https://t.co/s8YcfZrWhK 1 This is Nimbus (like the cloud). He just bought this fancy af duck raincoat. Only protects one ear tho. 12/10 so h*ckin floofy https://t.co/SIQbb8c3AU 1 Meet Stark. He just had his first ice cream cone. Got some on his nose. Requests your assistance. 10/10 would assist https://t.co/YwfN1lbpKA 1 This is Jarod. He likes having his belly brushed. Tongue ejects when you hit the right spot. 13/10 downright h*ckin adorable https://t.co/ArnxkyD2kC 1 Please only send dogs. We don't rate mechanics, no matter how h*ckin good. Thank you... 13/10 would sneak a pat https://t.co/Se5fZ9wp5E 1 RT @dog_rates: Meet Terrance. He's being yelled at because he stapled the wrong stuff together. 11/10 hang in there Terrance https://t.co/i… 1 Oh my god 10/10 for every little hot dog pupper 1 This is Koko. Her owner, inspired by Barney, recently built a cart for her to use during walks if she got tired. 13/10 rest easy Koko https://t.co/zeDpnsKX7w 1 This is Charlie. He pouts until he gets to go on the swing. 12/10 manipulative af https://t.co/ilwQqWFKCh 1 This pups goal was to get all four feet as close to each other as possible. Valiant effort 12/10 https://t.co/2mXALbgBTV 1 Look at this jokester thinking seat belt laws don't apply to him. Great tongue tho 10/10 https://t.co/VFKG1vxGjB 1 Meet Theodore. He's dapper as hell. Probably owns horses. Uses 'summer' as a verb. Often quotes philosophers. 11/10 https://t.co/J3Ld4fRbSy 1 This is Moose. He's a Polynesian Floofer. Dapper af. 10/10 would pet diligently https://t.co/mVfqRdppTL 1 This is Charlie. He's wishing you a very fun and safe St. Pawtrick's Day. 13/10 festive af https://t.co/nFpNgCWWYs 1 Guys, we only rate dogs. This is quite clearly a bulbasaur. Please only send dogs. Thank you... 12/10 human used pet, it's super effective https://t.co/Xc7uj1C64x 1 12/10 stay woke https://t.co/XDiQw4Akiw 1 This is Mo. No one will push him around in the grocery cart. He's quite pupset about it. 11/10 I volunteer https://t.co/feNwTq12S5 1 This is Zeus. He's downright fabulous. 12/10 https://t.co/sSugyyRuTp 1 Oh h*ck look at this spookling right here. Fright level off the charts. 12/10 sufficiently spooked https://t.co/BNy9IIJMb0 1 "Hello yes could I get one pupper to go please thank you"\nBoth 13/10 https://t.co/kYWcXbluUu 1 Today, 10/10, should be National Dog Rates Day 1 He was providing for his family 13/10 how dare you https://t.co/Q8mVwWN3f4 1 This is Jiminus. He's in a tub for some reason. What a jokester. Smh 7/10 churlish af https://t.co/84L4ED9Tpi 1 This is Damon. The newest presidential candidate for 2016. 10/10 he gets my vote https://t.co/Z5nqlfjYJi 1 Here's a sneak peek of me on spring break. 10/10 so many tired pups these days https://t.co/6aJrjKfNqX 1 Meet Freddery. He's a Westminster Toblerone. Seems to enjoy car rides. 9/10 would pat on the head approvingly https://t.co/6BS9XEip9a 1 This is Tonks. She is a service puppo. Can hear a caterpillar hiccup from 7 miles away. 13/10 would follow anywhere https://t.co/i622ZbWkUp 1 This is a Tuscaloosa Alcatraz named Jacob (Yacōb). Loves to sit in swing. Stellar tongue. 11/10 look at his feet https://t.co/2IslQ8ZSc7 1 Here's a pupper with a piece of pizza. Two of everybody's favorite things in one photo. 11/10 https://t.co/5USjFjKI7Z 1 This is Liam. He has a particular set of skills. He will look for you, he will find you, and he will kill you. 11/10 https://t.co/uQMFKv1vjn 1 This is Chuck. He's a neat dog. Very flexible. Trapped in a glass case of emotion. Devastatingly unfluffy 3/10 https://t.co/YqbU9xHV3p 1 Meet Duke. He's an Urban Parmesan. They know he's scared of the green rubber dog. "Why u do dis?" thinks Duke. 10/10 https://t.co/3bim9U5Idr 1 Two gorgeous dogs here. Little waddling dog is a rebel. Refuses to look at camera. Must be a preteen. 5/10 & 8/10 https://t.co/YPfw7oahbD 1 Garden's coming in nice this year. 10/10 https://t.co/5Lra3e4rrw 1 Meet Pupcasso. You can't afford his art. 13/10 talented af https://t.co/f2VUpy4WO0 1 Unique dog here. Oddly shaped tail. Long pink front legs. I don't think dogs breath underwater sos. 4/10 bad owner https://t.co/0EJXxE9UxW 1 RT @rolltidered: This is Gabby. Now requests to be referred to as a guide dog, thanks to @dog_rates and @ShopWeRateDogs. 12/10 in my book.… 1 This is Ron. Ron's currently experiencing a brain freeze. Damn it Ron. 8/10 https://t.co/4ilfcR5SlK 1 "I'm bathing the children what do you want?" ...both 10/10 https://t.co/Rizm1LWh4z 1 This is Craig. That's actually a normal sized fence he's stuck on. H*ckin massive pupper. 11/10 someone help him https://t.co/aAUXzoxaBy 1 This is Marlee. She fetched a flower and immediately requested that it be placed behind her ear. 12/10 elegant af https://t.co/nJztIEON5s 1 This is Michelangelope. He's half coffee cup. Rare af. 12/10 would hug until someone stopped me https://t.co/tvVDY0G911 1 Evolution of a pupper yawn featuring Max. 12/10 groundbreaking stuff https://t.co/t8Y4x9DmVD 1 Meet Milky. She has no idea what happened. Just as pupset as you. Perhaps a sheep exploded. Even offered to help clean. 12/10 very good girl https://t.co/g8vpXFzw29 1 The squad is back for St. Patrick's Day! ☘ 💚\n13/10 for all https://t.co/OcCDb2bng5 1 This is Richie and Plip. They are the best of pals. Do everything together. 10/10 for both https://t.co/KMdwNgONkV 1 Meet Naphaniel. He doesn't necessarily enjoy his day job, but he's damn good at it. 10/10 https://t.co/xoRWyQTcmy 1 This is Cupid. He was found in the trash. Now he's well on his way to prosthetic front legs and a long happy doggo life. 13/10 heroic af https://t.co/WS0Gha8vRh 1 Neat pup here. Enjoys lettuce. Long af ears. Short lil legs. Hops surprisingly high for dog. 9/10 still very petable https://t.co/HYR611wiA4 1 Here is a heartbreaking scene of an incredible pupper being laid to rest. 10/10 RIP pupper https://t.co/81mvJ0rGRu 1 He's doing his best. 12/10 very impressive that he got his license in the first place https://t.co/2vRmkkOLcN 1 Meet Calvin. He's proof that degrees mean absolutely nothing. 8/10 straighten up pup https://t.co/NIvxgSQ9BS 1 Meet Darby. He's a Fiscal Tutankhamen Waxbeard. Really likes steak. 7/10 https://t.co/rSndxTL0Ap 1 This is Bernie. He's taking his Halloween costume very seriously. Wants to be baked. 3/10 not a good idea Bernie smh https://t.co/1zBp1moFlX 1 We. Only. Rate. Dogs. Do not send in other things like this fluffy floor shark clearly ready to attack. Get it together guys... 12/10 https://t.co/BZHiKx3FpQ 1 SHE MISPLACED HER HOOMAN 13/10 MISTAKES HAPPEN https://t.co/ngAxYLVYHP 1 This is Skye. He is a Bretwaldian Altostratus. Not amused at all. Just saved small dog from avalanche. 10/10 hero af https://t.co/XmCvma01fF 1 Incredibly rare dog here. Good at bipedalism. Rad blue spikes. Ready to dance. 11/10 https://t.co/70X1TIXn38 1 This is Chester. He's clearly in charge of the other dogs. Weird ass paws. Not fit for fetch. 6/10 would still pet https://t.co/o2GvskrhHt 1 RT @dog_rates: This is Peaches. She's the ultimate selfie sidekick. Super sneaky tongue slip appreciated. 13/10 https://t.co/pbKOesr8Tg 1 This is Atticus. He's quite simply America af. 1776/10 https://t.co/GRXwMxLBkh 1 This is Huxley. He's pumped for #BarkWeek. Even has a hat. Ears are quite magical. 11/10 would remove hat to pat https://t.co/V7h5NMYbYz 1 Meet Scooter. He's experiencing the pupper equivalent of dropping ur phone in a toilet 10/10 put it in some rice pup https://t.co/JSmX1FIEaW 1 This is Loomis. He's the leader of the Kenneth search party. The passion is almost overwhelming. 12/10 one day he will be free https://t.co/kCRKlFg4AY 1 This is Jeffrie. He's a handheld pup. Excellent ears. Super fluffy. 10/10 overall topnotch canine https://t.co/SWnrQAFOtt 1 This is Kulet. She's very proud of the flower she picked. Loves it dearly. 10/10 now I want a flower https://t.co/myUUwqJIs7 1 RT @dog_rates: This a Norwegian Pewterschmidt named Tickles. Ears for days. 12/10 I care deeply for Tickles https://t.co/0aDF62KVP7 1 This is Tobi. She is properly fetching her shot. H*ckin nifty af bandana. 13/10 would send fully armed battalion to remind her of my love https://t.co/3FIqvumEXE 1 This is Steve. He was just relaxing in hot tub when he was intruded upon. 8/10 poor little pup https://t.co/EPq0MRAraJ 1 This is Carl. He likes to dance. Doesn't care what you think about it. 13/10 h*ckin confident pup https://t.co/C2zHcNIu4I 1 This is Ulysses. He likes holding hands and his eyes are magic. 11/10 https://t.co/gPmJHmtgak 1 This is Ellie. She requests to be carried around in a lacrosse stick at all times. 11/10 impossible to say no https://t.co/15yCmd43zU 1 Say hello to Nala. She's a Freckled High Bruschetta. Petable af. 12/10 https://t.co/5bjrIRqByp 1 Breathtaking scene. A father taking care of his newborn pup. Tugs at the heartstrings. 10/10 restores my faith https://t.co/06oZdehGEa 1 Viewer discretion advised. This is Jimbo. He will rip ur finger right h*ckin off. Other dog clearly an accessory. 12/10 pls pet with caution https://t.co/BuveP0uMF1 1 This is Axel. He's a professional leaf catcher. 12/10 gifted af https://t.co/P8bgOMMTRs 1 This is Jo. Jo is a Swedish Queso. Tongue bigger than face. Tiny lil legs. Still no seatbelt. Simply careless. 8/10 https://t.co/Edy7B5vOp2 1 Atlas is back and this time he's got doggles. Still 13/10 solarly conscious af https://t.co/s7MgFWDySc 1 This is Franq and Pablo. They're working hard getting ready for Christmas. 12/10 for both. Amazing pups https://t.co/8lKFBOQ2J5 1 RT @dog_rates: This is Bungalo. She uses that face to get what she wants. It works unbelievably well. 12/10 would never say no to https://t… 1 This is Sammy. Her tongue ejects without warning sometimes. It's a serious condition. Needs a hefty dose from a BlepiPen. 13/10 https://t.co/g20EmqK7vc 1 Here are my favorite #dogsatpollingstations \nMost voted for a more consistent walking schedule and to increase daily pats tenfold. All 13/10 https://t.co/17FVMl4VZ5 1 This is Calvin. He just loves America so much. 10/10 would roll around in flag with https://t.co/RXdzWaCQHm 1 Here's a puppo that seems to be on the fence about something haha no but seriously someone help her. 13/10 https://t.co/BxvuXk0UCm 1 Special dog here. Pretty big. Neck kinda long for dog. Cool spots. Must be a Dalmatian variant. 6/10 would still pet https://t.co/f8GXeDbFzu 1 This is Mia. She was specifically told not get on top of the hutch or play in the fridge. 10/10 what a rebel https://t.co/3J7wkwW4FG 1 This is Berb. He just found out that they have made 31 Kidz Bop CD's. Downright terrifying. 7/10 hang in there Berb https://t.co/CIFLjiTFwZ 1 This is Aspen. He's astronomically fluffy. I wouldn't stop petting this dog if the world was ending around me 11/10 https://t.co/oBlgL9nxpx 1 Say hello to Moofasa. He must be a powerful dog. Fenced in for your protection. Just got his ear pierced. 6/10 https://t.co/w6fRfQ3RXD 1 This a Norwegian Pewterschmidt named Tickles. Ears for days. 12/10 I care deeply for Tickles https://t.co/0aDF62KVP7 1 This is Stuart. He's sporting his favorite fanny pack. Secretly filled with bones only. 13/10 puppared puppo #BarkWeek https://t.co/y70o6h3isq 1 This is Juno. She spooked me up real good, but only to get my attention. Above average handwriting for a dog I think. 11/10 https://t.co/hFxxBCWlwj 1 "🎶 DO YOU BELIEVE IN LIFE AFTER LOVE 🎶"\n11/10 https://t.co/URNs5zFskc 1 Happy Friday. Here's some golden puppers. 12/10 for all https://t.co/wNkqAED6lG 1 This is Ozzie. He was doing fine until he lost traction in those festive socks. Now he's tired. 9/10 still killin it https://t.co/u4FYdIRKnY 1 This is Lola. She's a Butternut Splishnsplash. They are known to be ferocious af. 12/10 would absolutely still pet https://t.co/adQt5a6TZU 1 You need to watch these two doggos argue through a cat door. Both 11/10 https://t.co/qEP31epKEV 1 This is Teddy. His head is too heavy. 13/10 (vid by @jooanrim) https://t.co/sRUpRpGZ3y 1 RT @dog_rates: This little fella really hates stairs. Prefers bush. 13/10 legendary pupper https://t.co/e3LPMAHj7p 1 This is Bronte. She's fairly h*ckin aerodynamic. Also patiently waiting for mom to make her a main character. 13/10 would be an honor to pet https://t.co/w1MQWO2PET 1 This is Mac. His dad's probably a lawyer. 11/10 https://t.co/mjC0QpXGum 1 @serial @MrRoles OH MY GOD I listened to all of season 1 during a single road trip. I love you guys! I can confirm Bernie's 12/10 rating :) 1 Here we have an exotic dog. Good at ukulele. Fashionable af. Has two more arms if needed. Is blue. Knows what 'ohana means. 13/10 would pet https://t.co/gEsymGTXCT 1 This dude slaps your girl's ass what do you do?\n5/10 https://t.co/6dioUL6gcP 1 @HistoryInPics 13/10 1 This is Tycho. She just had new wheels installed. About to do a zoom. 0-60 in 2.4 seconds. 13/10 inspirational as h*ck https://t.co/DKwp2ByMsL 1 Here we see really big dog cuddling smaller dog. Very touching. True friendship. 10/10s would pet both at once https://t.co/A6XnvxHiUQ 1 This is Scout. Her batteries are low. 12/10 precious af https://t.co/ov05LIoQJX 1 Contortionist pup here. Inside pentagram. Clearly worships Satan. Known to slowly push fragile stuff off tables 6/10 https://t.co/EX9oR55VMe 1 I HEARD HE TIED HIS OWN BOWTIE MARK AND HE JUST WANTS TO SAY HI AND MAYBE A NOGGIN PAT SHOW SOME RESPECT 13/10 https://t.co/5BEjzT2Tth 1 HEY PUP WHAT'S THE PART OF THE HUMAN BODY THAT CONNECTS THE FOOT AND THE LEG? 11/10 so smart https://t.co/XQ1tRUmO3z 1 Stop sending in lobsters. This is the final warning. We only rate dogs. Thank you... 9/10 https://t.co/B9ZXXKJYNx 1 This is Bob. He's a Juniper Fitzsimmons. His body is 2, but his face is 85. Always looks miserable. Nice stool. 8/10 https://t.co/vYe9RlVz2N 1 Meet Snickers. He's adorable. Also comes in t-shirt mode. 12/10 I would aggressively caress Snickers https://t.co/aCRKDaFmVr 1 This is Tessa. She is also very pleased after finally meeting her biological father. 10/10 https://t.co/qDS1aCqppv 1 This was Cindy's face when she heard Susan forgot the snacks for after the kid's soccer game. 11/10 https://t.co/gzkuVGRgAD 1 This is Juno. She can see your future. 12/10 h*ckin mesmerizing af https://t.co/Z69mShifuk 1 This is Mister. He only wears the most fashionable af headwear. 11/10 h*ckin stylish https://t.co/BXJFKOVnJm 1 This is Rosie. She has a snazzy bow tie and a fin for a tail. Probably super fast underwater. Cool socks 10/10 https://t.co/GO76MdGBs0 1 This is Jazzy. She just found out that sandwich wasn't for her. Shocked and puppalled. 13/10 deep breaths Jazzy https://t.co/52cItP0vIO 1 This is Herm. He just wants to be like the other dogs. Sneaky tongue slip. Super fuzzy. 9/10 would cuddle firmly https://t.co/tg8h9lzCHv 1 This is Kirk. He just saw a bacon wrapped tennis ball and literally died. So sad. 12/10 RIP Kirk https://t.co/0twoigv5jP 1 This is Napolean. He's a Raggedy East Nicaraguan Zoom Zoom. Runs on one leg. Built for deception. No eyes. Good with kids. 12/10 great doggo https://t.co/PR7B7w1rUw 1 This is Cilantro. She's a Fellation Gadzooks. Eyes are super magical af. 12/10 could get lost in https://t.co/yJ26LNuyj5 1 This is Pete. He has no eyes. Needs a guide doggo. Also appears to be considerably fluffy af. 12/10 would hug softly https://t.co/Xc0gyovCtK 1 Two miniature golden retrievers here. Webbed paws. Don't walk very efficiently. Can't catch a tennis ball. 4/10s https://t.co/WzVLdSHJU7 1 This is all I want in my life. 12/10 for super sleepy pupper https://t.co/4RlLA5ObMh 1 Hopefully this puppo on a swing will help get you through your Monday. 11/10 would push https://t.co/G54yClasz2 1 This is Trevith. He's a Swiss Mountain Roadwoof. Breeze too powerful. 9/10 stay strong pupper https://t.co/6J8Ibwy1X6 1 Say hello to Quinn. She's quite the goofball. Not even a year old. Confirmed 13/10 but she really needs your help \n\nhttps://t.co/MOBkQnyHib https://t.co/EsOB4rLEKt 1 This is Klevin. He's addicted to sandwiches (yes a hotdog is a sandwich fight me) It's tearing his family apart 9/10 https://t.co/7BkkVNu5pd 1 PUPDATE: I'm proud to announce that Toby is 236 days sober. Pupgraded to a 13/10. We're all very proud of you, Toby https://t.co/a5OaJeRl9B 1 Say hello to Samson. He's a Firecracker Häagen-Dazs. 11/10 objects in mirror may be more petable than they appear https://t.co/03vR9dn7jy 1 These two pirates crashed their ship and don't know what to do now. Very irresponsible of them. Both 9/10 https://t.co/RJvUjgGH5z 1 Ok, I'll admit this is a pretty adorable bunny hopping towards the ocean but please only send in dogs... 11/10 https://t.co/sfsVCGIipI 1 This is Rose. Her face is stuck like that. 11/10 would pet so heckin well https://t.co/tl3gNYdoq2 1 This is Odie. He falls asleep wherever he wants. Must be nice. 10/10 https://t.co/M9BXCSDVjh 1 This is Jiminy. He has always wanted to be a cheerleader. Can jump high enough to get on other dog. Go Jiminy. 9/10 https://t.co/fW6kIPFGD2 1 This is space pup. He's very confused. Tries to moonwalk at one point. Super spiffy uniform. 13/10 I love space pup https://t.co/SfPQ2KeLdq 1 This is Bungalo. She uses that face to get what she wants. It works unbelievably well. 12/10 would never say no to https://t.co/0Fcft7jl4N 1 This is Grey. He's the dogtor in charge of your checkpup today. 12/10 I'd never miss an appointment https://t.co/9HEVPJEioD 1 This is Rizzo. He has many talents. A true renaissance doggo. 13/10 entertaining af https://t.co/TVXpEJB7Wn 1 This is Cannon. He just heard something behind him. Fr*ckin frightened af. 12/10 don't look back just run https://t.co/WTPBWT6Ux1 1 10/10 for dog. 7/10 for cat. 12/10 for human. Much skill. Would pet all https://t.co/uhx5gfpx5k 1 This is Shooter. He's doing quite the snowy zoom. 12/10 https://t.co/lHy4Xbyhd9 1 This is Kreggory. He just took a look at his student debt. 10/10 can't even comprehend it https://t.co/XTsZTgilnT 1 RT @dog_rates: This is Sampson. He just graduated. Ready to be a doggo now. Time for the real world. 12/10 have fun with taxes https://t.co… 1 This is a purebred Piers Morgan. Loves to Netflix and chill. Always looks like he forgot to unplug the iron. 6/10 https://t.co/DWnyCjf2mx 1 Here is a Siberian heavily armored polar bear mix. Strong owner. 10/10 I would do unspeakable things to pet this dog https://t.co/rdivxLiqEt 1 I can't tap the screen to make the hearts appear fast enough. 10/10 for the source of all future unproductiveness https://t.co/wOhuABgj6I 1 This is Layla. She's giving you a standing ovation.13/10 just magnificent (vid by @CSBrzezinski) https://t.co/KxYXHUHUi2 1 I've never wanted to go to a camp more in my entire life. 12/10 for all on board https://t.co/wJZlpGFEbD 1 Say hello to Blakely. He thinks that's a hat. Silly pupper. That's a nanner. 9/10 https://t.co/UwOV1jqKRt 1 This is Oliver. He does toe touches in his sleep. 13/10 precious af https://t.co/3BrRIWjG35 1 When you keepin the popcorn bucket in your lap and she reach for some... 10/10 https://t.co/a1IrjaID3X 1 Your favorite squad is looking extra h*ckin spooky today. 13/10 for all https://t.co/PrgvOyPtDT 1 This is Alfie. He's touching a butt. Couldn't be happier. 11/10 https://t.co/gx3xF5mZbo 1 This is Cash. He's officially given pup on today. 12/10 frighteningly relatable https://t.co/m0hrATIEyw 1 This is Buddy. He ran into a glass door once. Now he's h*ckin skeptical. 13/10 empowering af (vid by Brittany Gaunt) https://t.co/q2BgNIi3OA 1 This is Dex. He can see into your past and future. Mesmerizing af 11/10 https://t.co/0dYI0Cpdge 1 This is Bloop. He's a Phoenician Winnebago. Tongue is just wow. That box is all he has (tragic). 12/10 would caress https://t.co/DWNrPPXgHA 1 We only rate dogs. Pls stop sending non-canines like this Bulgarian Eyeless Porch Bear. This is unacceptable... 9/10 https://t.co/2yctWAUZ3Z 1 We only rate dogs. Pls stop sending in non-canines like this Slovak Car Bunny. It makes my job very difficult. 11/10 https://t.co/VflvQLH2y5 1 Those are sunglasses and a jean jacket. 11/10 dog cool af https://t.co/uHXrPkUEyl 1 This is Lincoln. He forgot to use his blinker when he changed lanes just now. Guilty as h*ck. Still 10/10 https://t.co/lsrR83SiVp 1 This is Gunner. He's a Figamus Newton. King of the peek-a-boo. Cool jeans. 11/10 https://t.co/ONuBILIYXZ 1 This is Bloo. He's a Westminster Cîroc. Doesn't think Bart deserves legs. Nice flowers. 8/10 https://t.co/IAc1QCczMc 1 Meet Doobert. He's a deaf doggo. Didn't stop him on the field tho. Absolute legend today. 14/10 would pat head approvingly https://t.co/iCk7zstRA9 1 This is Rueben. He has reached ultimate pupper zen state. 11/10 tranquil af https://t.co/Z167HgtnBi 1 This is Rinna. She's melting. 10/10 get inside pupper https://t.co/PA0czwucsb 1 Say hello to Griffin. He's upset because his costume for Halloween didn't arrive until today. 9/10 cheer up pup https://t.co/eoBCjSFajX 1 Meet Benji. He just turned 1. Has already given up on a traditional pupper physique. Just inhaled that thing. 9/10 https://t.co/sLUC4th3Zj 1 Prosperous good boy 13/10 socioeconomic af https://t.co/8YlD5lxPbQ 1 Heartwarming scene here. Son reuniting w father after coming home from deployment. Very moving. 10/10 for both pups https://t.co/95JJevQOWW 1 This is Brudge. He's a Doberdog. Going to be h*ckin massive one day. 11/10 would pat on head approvingly https://t.co/cTlHjEUNK8 1 This is Ralphé. He patrols the lake. Looking for babes. 11/10 https://t.co/Pb6iMmo0wk 1 I promise this wasn't meant to be a cuteness overload account but ermergerd look at this cozy pupper. 13/10 https://t.co/mpQl2rJjDh 1 @mount_alex3 13/10 1 I'm not sure what this dog is doing but it's pretty inspirational. 12/10 https://t.co/4Kn9GEHXiE 1 This is Phineas. He's a magical dog. Only appears through the hole of a donut. 10/10 mysterious pup https://t.co/NECxEHN5YU 1 This is George. He's upset that the 4th of July isn't everyday. 11/10 https://t.co/wImU0jdx3E 1 This dog gave up mid jump. 9/10 https://t.co/KmMv3Y2zI8 1 This is Bobby. He doesn't give a damn about personal space. Convinced he called shotgun first. 4/10 not the best dog https://t.co/b8XW69gSaU 1 Everybody look at this beautiful pupper 13/10 https://t.co/hyAC5Hq9GC 1 When you're having a great time sleeping and your mom comes in and turns on the lights. 10/10 https://t.co/6qYd6BNSPd 1 This is Titan. He's trying to make friends. Offering up his favorite stick. 13/10 philanthropic af https://t.co/vhrkz0dK4v 1 This is one of the most reckless puppers I've ever seen. How she got a license in the first place is beyond me. 6/10 https://t.co/z5bAdtn9kd 1 Meet Gordon. He's an asshole. 9/10 would still pet https://t.co/a34N7QwKbb 1 This is Dexter. He breaks hearts for a living. 11/10 h*ckin handsome af https://t.co/4DhSsC1W7S 1 What a dog to start the day with. Very calm. Likes to chill by pond. Corkscrews sticking out of head. Obedient. 7/10 https://t.co/0nIxPTDWAZ 1 This is Margo. She just dug pup a massive hole. Can't wait for you to see it. H*ckin proud of herself. 12/10 would forgive then pet https://t.co/H38HB6rBTx 1 Pupper butt 1, Doggo 0. Both 12/10 https://t.co/WQvcPEpH2u 1 Meet Phred. He isn't steering, looking at the road, or wearing a seatbelt. Phred is a rolling tornado of danger 6/10 https://t.co/mZD7Bo7HfV 1 *screeches for a sec and then faints* 12/10 https://t.co/N5QL4ySBEx 1 Please stop sending it pictures that don't even have a doggo or pupper in them. Churlish af. 5/10 neat couch tho https://t.co/u2c9c7qSg8 1 This is Harlso. He has a really good idea but isn't sure you're going to like it. 13/10 he'll just keep it to himself https://t.co/IzcaR3Nqyn 1 Please pray for this pupper. Nothing wrong with her she just can't stop getting hit with banana peels. 11/10 https://t.co/8sdVenUAqr 1 RT @dog_rates: This is Bo. He's a Benedoop Cumbersnatch. Seems frustrated with own feet. Portable as hell. 11/10 very solid pupper https://… 1 @bragg6of8 @Andy_Pace_ we are still looking for the first 15/10 1 This is one of the most inspirational stories I've ever come across. I have no words. 14/10 for both doggo and owner https://t.co/I5ld3eKD5k 1 RT @dog_rates: Meet Sunny. He can take down a polar bear in one fell swoop. Fr*cken deadly af. 13/10 would pet with caution https://t.co/EM… 1 Here are two lil cuddly puppers. Both 12/10 would snug like so much https://t.co/zO4eb7C4tG 1 This is Cheesy. It's her birthday. She's patiently waiting to eat her party muffin. 9/10 happy birthday pup https://t.co/cH2H7mch2H 1 This is Moreton. He's the Good Boy Who Lived. 13/10 magical as h*ck https://t.co/rLHGx3VAF3 1 This is Dawn. She's just checking pup on you. Making sure you're doing okay. 12/10 she's here if you need her https://t.co/XKJrmO4fAQ 1 This is Duddles. He did an attempt. 13/10 someone help him (vid by Georgia Felici) https://t.co/UDT7ZkcTgY 1 Teagan reads entire books in store so they're free. Loved 50 Shades of Grey (how dare I make that joke so late) 9/10 https://t.co/l46jwv5WYv 1 Ladies and gentlemen... I found Pipsy. He may have changed his name to Pablo, but he never changed his love for the sea. Pupgraded to 14/10 https://t.co/lVU5GyNFen 1 This is Christoper. He is a spotted Penne. Can easily navigate stairs. 8/10 https://t.co/bg4TqvvkuF 1 This is Duke. He permanently looks like he just tripped over something. 11/10 https://t.co/1sNtG7GgiO 1 This is Scruffers. He's being violated on multiple levels and is not happy about it. 9/10 hang in there Scruffers https://t.co/nLQoltwEZ7 1 This is Lacy. She's tipping her hat to you. Daydreams of her life back on the frontier. 11/10 would pet so well https://t.co/fG5Pk3Et1I 1 This is Davey. He'll have your daughter home by 8. Just a stand up pup. 11/10 would introduce to mom https://t.co/E6bGWf9EOm 1 Never doubt a doggo 14/10 https://t.co/AbBLh2FZCH 1 This is Dave. He passed the h*ck out. It's barely the afternoon on a Thursday, Dave. Get it together. Still 11/10 would boop mid-snooze https://t.co/Eme9Uar6v2 1 This is Luna. It's her first time outside and a bee stung her nose. Completely h*ckin uncalled for. 13/10 where's the bee I just wanna talk https://t.co/2RYiLGHuPN 1 Cool dog. Enjoys couch. Low monotone bark. Very nice kicks. Pisses milk (must be rare). Can't go down stairs. 4/10 https://t.co/vXMKrJC81s 1 .@NBCSports OMG THE TINY HAT I'M GOING TO HAVE TO SAY 11/10 NBC 1 I'm sure you've all seen this pupper. Not prepared at all for the flying disc of terror. 10/10 https://t.co/G0pQiFGM7O 1 This is Oakley. He just got yelled at for going 46 in a 45. Churlish af. 11/10 would still pet so well https://t.co/xIYsa6LPA4 1 @xianmcguire @Jenna_Marbles Kardashians wouldn't be famous if as a society we didn't place enormous value on what they do. The dogs are very deserving of their 14/10 1 This is Bear. He went outside to play in the snow. Needed a break from the game. Feeling a tad better now. 12/10 deep breaths Bear https://t.co/7WFLKli2T3 1 This is Dexter. He just got some big news. 10/10 https://t.co/CbvCUE6PFI 1 Merry Christmas. My gift to you is this tiny unicorn running into a wall in slow motion. 11/10 https://t.co/UKqIAnR3He 1 Name: text, dtype: int64
twitter_archive['expanded_urls'].value_counts()
https://twitter.com/dog_rates/status/782305867769217024/photo/1,https://twitter.com/dog_rates/status/782305867769217024/photo/1,https://twitter.com/dog_rates/status/782305867769217024/photo/1 2 https://twitter.com/dog_rates/status/692417313023332352/photo/1 2 https://twitter.com/dog_rates/status/700143752053182464/photo/1 2 https://twitter.com/dog_rates/status/679462823135686656/photo/1 2 https://twitter.com/dog_rates/status/667866724293877760/photo/1 2 https://twitter.com/dog_rates/status/768193404517830656/photo/1 2 https://twitter.com/dog_rates/status/750719632563142656/photo/1 2 https://twitter.com/dog_rates/status/842163532590374912/photo/1,https://twitter.com/dog_rates/status/842163532590374912/photo/1 2 https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1 2 https://twitter.com/dog_rates/status/781524693396357120/photo/1 2 https://twitter.com/dog_rates/status/810254108431155201/photo/1 2 https://twitter.com/dog_rates/status/666104133288665088/photo/1 2 https://www.gofundme.com/lolas-life-saving-surgery-funds,https://twitter.com/dog_rates/status/835264098648616962/photo/1,https://twitter.com/dog_rates/status/835264098648616962/photo/1 2 https://twitter.com/dog_rates/status/704761120771465216/photo/1,https://twitter.com/dog_rates/status/704761120771465216/photo/1 2 https://twitter.com/dog_rates/status/817827839487737858/video/1 2 https://twitter.com/dog_rates/status/759923798737051648/photo/1 2 https://twitter.com/dog_rates/status/878057613040115712/photo/1,https://twitter.com/dog_rates/status/878057613040115712/photo/1 2 https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1 2 https://twitter.com/dog_rates/status/809920764300447744/photo/1 2 https://twitter.com/dog_rates/status/681694085539872773/photo/1 2 https://twitter.com/dog_rates/status/767754930266464257/photo/1 2 http://www.gofundme.com/bluethewhitehusky,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1 2 https://twitter.com/dog_rates/status/829501995190984704/photo/1,https://twitter.com/dog_rates/status/829501995190984704/photo/1 2 https://twitter.com/dog_rates/status/866450705531457537/photo/1,https://twitter.com/dog_rates/status/866450705531457537/photo/1 2 https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1 2 https://twitter.com/dog_rates/status/694669722378485760/photo/1,https://twitter.com/dog_rates/status/694669722378485760/photo/1 2 https://twitter.com/dog_rates/status/820749716845686786/photo/1,https://twitter.com/dog_rates/status/820749716845686786/photo/1 2 https://twitter.com/dog_rates/status/819227688460238848/photo/1 2 https://twitter.com/dog_rates/status/809220051211603969/photo/1,https://twitter.com/dog_rates/status/809220051211603969/photo/1 2 https://www.gofundme.com/3ti3nps,https://twitter.com/dog_rates/status/868552278524837888/photo/1,https://twitter.com/dog_rates/status/868552278524837888/photo/1 2 https://twitter.com/dog_rates/status/816450570814898180/photo/1,https://twitter.com/dog_rates/status/816450570814898180/photo/1 2 https://www.gofundme.com/my-puppys-double-cataract-surgery,https://twitter.com/dog_rates/status/825026590719483904/photo/1,https://twitter.com/dog_rates/status/825026590719483904/photo/1 2 https://www.gofundme.com/surgeryforjacktheminpin,https://twitter.com/dog_rates/status/815990720817401858/photo/1 2 https://twitter.com/dog_rates/status/762699858130116608/photo/1 2 https://twitter.com/dog_rates/status/739979191639244800/photo/1 2 https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1 2 https://twitter.com/dog_rates/status/698195409219559425/photo/1 2 https://twitter.com/dog_rates/status/700747788515020802/photo/1 2 https://twitter.com/dog_rates/status/786233965241827333/photo/1 2 https://twitter.com/dog_rates/status/673295268553605120/photo/1 2 https://vine.co/v/ea0OwvPTx9l 2 https://www.gofundme.com/help-my-baby-sierra-get-better,https://twitter.com/dog_rates/status/873213775632977920/photo/1,https://twitter.com/dog_rates/status/873213775632977920/photo/1 2 https://twitter.com/dog_rates/status/775733305207554048/photo/1 2 https://twitter.com/dog_rates/status/839549326359670784/photo/1 2 https://twitter.com/dog_rates/status/773308824254029826/photo/1 2 https://twitter.com/dog_rates/status/667152164079423490/photo/1 2 https://twitter.com/dog_rates/status/859196978902773760/video/1 2 https://twitter.com/dog_rates/status/786709082849828864/photo/1 2 https://www.gofundme.com/helpquinny,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1 2 https://www.gofundme.com/help-lorenzo-beat-cancer,https://twitter.com/dog_rates/status/860563773140209665/photo/1,https://twitter.com/dog_rates/status/860563773140209665/photo/1 2 https://www.gofundme.com/servicedogoliver,https://twitter.com/dog_rates/status/819952236453363712/photo/1 2 https://twitter.com/dog_rates/status/687317306314240000/photo/1,https://twitter.com/dog_rates/status/687317306314240000/photo/1 2 https://twitter.com/dog_rates/status/680055455951884288/photo/1 2 https://twitter.com/dog_rates/status/866334964761202691/photo/1,https://twitter.com/dog_rates/status/866334964761202691/photo/1 2 https://www.gofundme.com/3yd6y1c,https://twitter.com/dog_rates/status/878281511006478336/photo/1 2 https://twitter.com/dog_rates/status/841077006473256960/photo/1 2 https://twitter.com/dog_rates/status/667138269671505920/photo/1 2 https://twitter.com/dog_rates/status/786963064373534720/photo/1 2 https://twitter.com/dog_rates/status/669000397445533696/photo/1 2 https://twitter.com/dog_rates/status/837820167694528512/photo/1,https://twitter.com/dog_rates/status/837820167694528512/photo/1 2 https://www.gofundme.com/3hgsuu0,https://twitter.com/dog_rates/status/840632337062862849/photo/1 2 https://twitter.com/dog_rates/status/832369877331693569/photo/1 2 https://twitter.com/dog_rates/status/780931614150983680/photo/1 2 https://twitter.com/dog_rates/status/683391852557561860/photo/1 2 https://twitter.com/dog_rates/status/739238157791694849/video/1 2 https://twitter.com/dog_rates/status/676936541936185344/photo/1 2 https://twitter.com/dog_rates/status/681523177663676416/photo/1 2 https://twitter.com/dog_rates/status/753375668877008896/photo/1 2 https://twitter.com/dog_rates/status/667182792070062081/photo/1 2 https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1 2 https://twitter.com/dog_rates/status/844704788403113984/photo/1 2 https://twitter.com/dog_rates/status/759447681597108224/photo/1 2 https://twitter.com/dog_rates/status/718631497683582976/photo/1 2 https://twitter.com/dog_rates/status/761672994376806400/video/1 2 https://twitter.com/dog_rates/status/783839966405230592/photo/1,https://twitter.com/dog_rates/status/783839966405230592/photo/1,https://twitter.com/dog_rates/status/783839966405230592/photo/1 2 https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1 2 https://twitter.com/dog_rates/status/833124694597443584/photo/1,https://twitter.com/dog_rates/status/833124694597443584/photo/1,https://twitter.com/dog_rates/status/833124694597443584/photo/1 2 https://twitter.com/dog_rates/status/740676976021798912/photo/1 2 https://www.loveyourmelon.com/pages/ourstory,https://twitter.com/dog_rates/status/820314633777061888/photo/1,https://twitter.com/dog_rates/status/820314633777061888/photo/1,https://twitter.com/dog_rates/status/820314633777061888/photo/1 2 https://twitter.com/dog_rates/status/671355857343524864/photo/1 1 https://vine.co/v/hbLbH77Ar67 1 https://twitter.com/micahgrimes/status/817902080979599361 1 https://twitter.com/dog_rates/status/754011816964026368/photo/1,https://twitter.com/dog_rates/status/754011816964026368/photo/1 1 https://twitter.com/dog_rates/status/691483041324204033/photo/1,https://twitter.com/dog_rates/status/691483041324204033/photo/1,https://twitter.com/dog_rates/status/691483041324204033/photo/1,https://twitter.com/dog_rates/status/691483041324204033/photo/1 1 https://twitter.com/dog_rates/status/676946864479084545/photo/1 1 https://twitter.com/dog_rates/status/670046952931721218/photo/1 1 https://vine.co/v/5AJm5pq7Kav 1 https://twitter.com/dog_rates/status/699079609774645248/photo/1,https://twitter.com/dog_rates/status/699079609774645248/photo/1,https://twitter.com/dog_rates/status/699079609774645248/photo/1,https://twitter.com/dog_rates/status/699079609774645248/photo/1 1 https://twitter.com/dog_rates/status/746369468511756288/photo/1 1 https://twitter.com/dog_rates/status/668256321989451776/photo/1 1 https://twitter.com/dog_rates/status/686618349602762752/photo/1 1 https://m.youtube.com/watch?v=idKxCMsS3FQ&feature=youtu.be 1 https://twitter.com/dog_rates/status/845677943972139009/photo/1 1 https://twitter.com/dog_rates/status/836677758902222849/photo/1,https://twitter.com/dog_rates/status/836677758902222849/photo/1 1 https://twitter.com/dog_rates/status/758041019896193024/photo/1 1 https://twitter.com/dog_rates/status/670061506722140161/photo/1 1 https://twitter.com/dog_rates/status/886680336477933568/photo/1 1 https://twitter.com/dog_rates/status/667044094246576128/photo/1 1 https://twitter.com/dog_rates/status/816091915477250048/photo/1,https://twitter.com/dog_rates/status/816091915477250048/photo/1,https://twitter.com/dog_rates/status/816091915477250048/photo/1,https://twitter.com/dog_rates/status/816091915477250048/photo/1 1 https://twitter.com/dog_rates/status/754120377874386944/photo/1 1 https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1 1 https://twitter.com/dog_rates/status/667886921285246976/photo/1 1 https://twitter.com/dog_rates/status/748346686624440324/photo/1 1 https://vine.co/v/iHl2UDEBZ95 1 https://vine.co/v/5gKxeUpuKEr 1 https://twitter.com/dog_rates/status/855851453814013952/photo/1 1 https://twitter.com/dog_rates/status/695794761660297217/photo/1 1 https://twitter.com/dog_rates/status/858107933456039936/photo/1 1 https://twitter.com/dog_rates/status/755110668769038337/video/1 1 https://twitter.com/dog_rates/status/696894894812565505/photo/1 1 https://twitter.com/dog_rates/status/713175907180089344/photo/1 1 https://twitter.com/dog_rates/status/827324948884643840/photo/1 1 https://twitter.com/dog_rates/status/803276597545603072/photo/1 1 https://twitter.com/dog_rates/status/767122157629476866/photo/1,https://twitter.com/dog_rates/status/767122157629476866/photo/1 1 https://twitter.com/dog_rates/status/668986018524233728/photo/1 1 https://twitter.com/dog_rates/status/682697186228989953/photo/1 1 https://twitter.com/dog_rates/status/667530908589760512/photo/1 1 https://twitter.com/dog_rates/status/704347321748819968/photo/1 1 https://twitter.com/dog_rates/status/771014301343748096/photo/1 1 https://vine.co/v/eEZXZI1rqxX 1 https://twitter.com/dog_rates/status/670003130994700288/photo/1 1 https://twitter.com/dog_rates/status/704859558691414016/photo/1 1 https://twitter.com/dog_rates/status/887343217045368832/video/1 1 https://twitter.com/dog_rates/status/677187300187611136/photo/1 1 https://twitter.com/dog_rates/status/739544079319588864/photo/1,https://twitter.com/dog_rates/status/739544079319588864/photo/1 1 https://vine.co/v/iIhEU2lVqxz 1 https://twitter.com/dog_rates/status/675853064436391936/photo/1,https://twitter.com/dog_rates/status/675853064436391936/photo/1 1 https://twitter.com/dog_rates/status/807621403335917568/photo/1,https://twitter.com/dog_rates/status/807621403335917568/photo/1,https://twitter.com/dog_rates/status/807621403335917568/photo/1,https://twitter.com/dog_rates/status/807621403335917568/photo/1 1 https://twitter.com/dog_rates/status/675354435921575936/video/1,https://twitter.com/dog_rates/status/675354435921575936/video/1 1 https://twitter.com/dog_rates/status/670764103623966721/photo/1 1 https://twitter.com/dog_rates/status/675432746517426176/photo/1,https://twitter.com/dog_rates/status/675432746517426176/photo/1,https://twitter.com/dog_rates/status/675432746517426176/photo/1 1 https://twitter.com/dog_rates/status/684902183876321280/photo/1 1 https://twitter.com/dog_rates/status/706593038911545345/photo/1 1 https://twitter.com/dog_rates/status/751205363882532864/photo/1,https://twitter.com/dog_rates/status/751205363882532864/photo/1 1 https://twitter.com/dog_rates/status/786363235746385920/photo/1,https://twitter.com/dog_rates/status/786363235746385920/photo/1,https://twitter.com/dog_rates/status/786363235746385920/photo/1,https://twitter.com/dog_rates/status/786363235746385920/photo/1 1 https://twitter.com/dog_rates/status/685667379192414208/photo/1 1 https://twitter.com/dog_rates/status/696754882863349760/photo/1 1 https://twitter.com/dog_rates/status/714141408463036416/photo/1 1 https://twitter.com/dog_rates/status/674271431610523648/photo/1 1 https://twitter.com/dog_rates/status/675891555769696257/photo/1 1 https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1 1 https://twitter.com/dog_rates/status/827933404142436356/photo/1,https://twitter.com/dog_rates/status/827933404142436356/photo/1,https://twitter.com/dog_rates/status/827933404142436356/photo/1 1 https://twitter.com/dog_rates/status/829141528400556032/photo/1,https://twitter.com/dog_rates/status/829141528400556032/photo/1 1 https://twitter.com/dog_rates/status/782598640137187329/photo/1 1 https://twitter.com/dog_rates/status/762316489655476224/photo/1 1 https://twitter.com/dog_rates/status/684880619965411328/photo/1 1 https://vine.co/v/iZXg7VpeDAv 1 https://twitter.com/dog_rates/status/828409743546925057/photo/1 1 https://twitter.com/dog_rates/status/671485057807351808/photo/1 1 https://twitter.com/dog_rates/status/891087950875897856/photo/1 1 https://twitter.com/dog_rates/status/710269109699739648/photo/1 1 https://twitter.com/dog_rates/status/747594051852075008/photo/1 1 https://twitter.com/dog_rates/status/847251039262605312/photo/1,https://twitter.com/dog_rates/status/847251039262605312/photo/1 1 https://twitter.com/dog_rates/status/765371061932261376/photo/1,https://twitter.com/dog_rates/status/765371061932261376/photo/1 1 https://twitter.com/dog_rates/status/670040295598354432/photo/1 1 https://twitter.com/dog_rates/status/683111407806746624/photo/1 1 https://twitter.com/dog_rates/status/834786237630337024/photo/1 1 https://vine.co/v/iHFqnjKVbIQ 1 https://twitter.com/dog_rates/status/740365076218183684/photo/1 1 https://twitter.com/dog_rates/status/825535076884762624/photo/1 1 https://twitter.com/dog_rates/status/679158373988876288/photo/1,https://twitter.com/dog_rates/status/679158373988876288/photo/1 1 https://twitter.com/dog_rates/status/808106460588765185/photo/1 1 https://vine.co/v/iAAxTbj1UAM 1 https://twitter.com/dog_rates/status/874057562936811520/photo/1 1 https://vine.co/v/5W0bdhEUUVT 1 https://twitter.com/dog_rates/status/671538301157904385/photo/1 1 https://twitter.com/dog_rates/status/675531475945709568/photo/1 1 https://twitter.com/dog_rates/status/677662372920729601/photo/1 1 https://vine.co/v/eMmXVPn5eQK 1 https://twitter.com/mpstowerham/status/876162994446753793 1 https://twitter.com/dog_rates/status/695767669421768709/photo/1 1 https://twitter.com/dog_rates/status/877316821321428993/photo/1,https://twitter.com/dog_rates/status/877316821321428993/photo/1 1 https://twitter.com/dog_rates/status/864279568663928832/photo/1,https://twitter.com/dog_rates/status/864279568663928832/photo/1 1 https://twitter.com/dog_rates/status/751598357617971201/photo/1,https://twitter.com/dog_rates/status/751598357617971201/photo/1,https://twitter.com/dog_rates/status/751598357617971201/photo/1,https://twitter.com/dog_rates/status/751598357617971201/photo/1 1 https://twitter.com/dog_rates/status/813812741911748608/photo/1,https://twitter.com/dog_rates/status/813812741911748608/photo/1,https://twitter.com/dog_rates/status/813812741911748608/photo/1 1 https://twitter.com/dog_rates/status/690728923253055490/photo/1 1 https://twitter.com/dog_rates/status/707995814724026368/photo/1 1 https://twitter.com/dog_rates/status/799063482566066176/photo/1,https://twitter.com/dog_rates/status/799063482566066176/photo/1,https://twitter.com/dog_rates/status/799063482566066176/photo/1,https://twitter.com/dog_rates/status/799063482566066176/photo/1 1 https://twitter.com/dog_rates/status/668537837512433665/photo/1 1 https://twitter.com/dog_rates/status/668614819948453888/photo/1 1 https://twitter.com/dog_rates/status/718971898235854848/photo/1 1 https://twitter.com/dog_rates/status/670452855871037440/photo/1 1 https://twitter.com/dog_rates/status/669354382627049472/photo/1 1 https://twitter.com/dog_rates/status/845812042753855489/photo/1,https://twitter.com/dog_rates/status/845812042753855489/photo/1,https://twitter.com/dog_rates/status/845812042753855489/photo/1,https://twitter.com/dog_rates/status/845812042753855489/photo/1 1 https://twitter.com/dog_rates/status/687312378585812992/photo/1 1 https://twitter.com/dog_rates/status/720059472081784833/photo/1 1 https://twitter.com/dog_rates/status/666437273139982337/photo/1 1 https://twitter.com/dog_rates/status/776088319444877312/photo/1,https://twitter.com/dog_rates/status/776088319444877312/photo/1,https://twitter.com/dog_rates/status/776088319444877312/photo/1,https://twitter.com/dog_rates/status/776088319444877312/photo/1 1 https://twitter.com/dog_rates/status/666447344410484738/photo/1 1 https://twitter.com/dog_rates/status/671182547775299584/photo/1 1 https://twitter.com/dog_rates/status/671511350426865664/photo/1 1 https://twitter.com/dog_rates/status/840268004936019968/photo/1,https://twitter.com/dog_rates/status/840268004936019968/photo/1,https://twitter.com/dog_rates/status/840268004936019968/photo/1,https://twitter.com/dog_rates/status/840268004936019968/photo/1 1 https://vine.co/v/eEZXZI1rqxX,https://vine.co/v/eEZXZI1rqxX 1 https://twitter.com/dog_rates/status/880872448815771648/photo/1 1 https://www.gofundme.com/help-fix-codys-torn-acl,https://twitter.com/dog_rates/status/870656317836468226/photo/1,https://twitter.com/dog_rates/status/870656317836468226/photo/1,https://twitter.com/dog_rates/status/870656317836468226/photo/1,https://twitter.com/dog_rates/status/870656317836468226/photo/1 1 https://twitter.com/dog_rates/status/874012996292530176/photo/1,https://twitter.com/dog_rates/status/874012996292530176/photo/1 1 https://www.gofundme.com/bennys-medical-bills,https://twitter.com/dog_rates/status/852912242202992640/photo/1,https://twitter.com/dog_rates/status/852912242202992640/photo/1 1 https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1 1 https://twitter.com/dog_rates/status/723673163800948736/photo/1 1 https://twitter.com/dog_rates/status/728046963732717569/photo/1 1 https://twitter.com/dog_rates/status/674774481756377088/photo/1 1 https://twitter.com/dog_rates/status/676430933382295552/photo/1 1 https://twitter.com/dog_rates/status/683462770029932544/photo/1 1 https://vine.co/v/5QWd3LZqXxd 1 https://twitter.com/dog_rates/status/670444955656130560/photo/1,https://twitter.com/dog_rates/status/670444955656130560/photo/1 1 https://twitter.com/dog_rates/status/687124485711986689/photo/1 1 https://twitter.com/dog_rates/status/669393256313184256/photo/1 1 https://twitter.com/dog_rates/status/685169283572338688/photo/1 1 https://twitter.com/dog_rates/status/669625907762618368/photo/1 1 https://twitter.com/dog_rates/status/674793399141146624/photo/1 1 https://twitter.com/dog_rates/status/756651752796094464/photo/1 1 https://twitter.com/dog_rates/status/842115215311396866/photo/1,https://twitter.com/dog_rates/status/842115215311396866/photo/1,https://twitter.com/dog_rates/status/842115215311396866/photo/1 1 https://twitter.com/dog_rates/status/798209839306514432/photo/1 1 https://twitter.com/dog_rates/status/817056546584727552/photo/1 1 https://twitter.com/dog_rates/status/772193107915964416/photo/1 1 https://twitter.com/dog_rates/status/680959110691590145/photo/1,https://twitter.com/dog_rates/status/680959110691590145/photo/1,https://twitter.com/dog_rates/status/680959110691590145/photo/1 1 https://twitter.com/dog_rates/status/813127251579564032/photo/1,https://twitter.com/dog_rates/status/813127251579564032/photo/1 1 https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1 1 https://twitter.com/dog_rates/status/683481228088049664/photo/1 1 https://twitter.com/dog_rates/status/796865951799083009/photo/1 1 https://twitter.com/dog_rates/status/741793263812808706/photo/1,https://twitter.com/dog_rates/status/741793263812808706/photo/1 1 https://twitter.com/dog_rates/status/669753178989142016/photo/1 1 https://twitter.com/dog_rates/status/694356675654983680/photo/1 1 https://twitter.com/dog_rates/status/667119796878725120/photo/1 1 https://twitter.com/dog_rates/status/793271401113350145/photo/1 1 https://vine.co/v/OEppMFbejFz,https://vine.co/v/OEppMFbejFz 1 https://twitter.com/dog_rates/status/698635131305795584/video/1 1 https://twitter.com/dog_rates/status/676146341966438401/photo/1 1 https://twitter.com/dog_rates/status/703356393781329922/photo/1 1 https://twitter.com/dog_rates/status/836260088725786625/photo/1 1 https://twitter.com/dog_rates/status/670838202509447168/photo/1 1 https://twitter.com/dog_rates/status/741067306818797568/photo/1 1 https://twitter.com/dog_rates/status/750117059602808832/photo/1,https://twitter.com/dog_rates/status/750117059602808832/photo/1,https://twitter.com/dog_rates/status/750117059602808832/photo/1,https://twitter.com/dog_rates/status/750117059602808832/photo/1 1 https://vine.co/v/i7nWzrenw5h 1 https://twitter.com/dog_rates/status/671882082306625538/photo/1 1 https://twitter.com/dog_rates/status/678798276842360832/photo/1 1 https://twitter.com/dog_rates/status/668975677807423489/photo/1 1 https://twitter.com/dog_rates/status/729838605770891264/video/1 1 https://twitter.com/dog_rates/status/816697700272001025/photo/1,https://twitter.com/dog_rates/status/816697700272001025/photo/1 1 https://twitter.com/dog_rates/status/718246886998687744/photo/1 1 https://twitter.com/dog_rates/status/725729321944506368/photo/1 1 https://twitter.com/dog_rates/status/756275833623502848/photo/1,https://twitter.com/dog_rates/status/756275833623502848/photo/1 1 https://twitter.com/dog_rates/status/668171859951755264/photo/1 1 https://twitter.com/dog_rates/status/838561493054533637/photo/1 1 https://twitter.com/dog_rates/status/671729906628341761/photo/1 1 https://twitter.com/dog_rates/status/689143371370250240/photo/1 1 https://twitter.com/dog_rates/status/884925521741709313/photo/1 1 https://vine.co/v/iLTZmtE1FTB 1 https://www.petfinder.com/petdetail/34918210,https://twitter.com/dog_rates/status/832032802820481025/photo/1,https://twitter.com/dog_rates/status/832032802820481025/photo/1,https://twitter.com/dog_rates/status/832032802820481025/photo/1,https://twitter.com/dog_rates/status/832032802820481025/photo/1 1 https://twitter.com/dog_rates/status/666071193221509120/photo/1 1 https://twitter.com/dog_rates/status/879415818425184262/video/1 1 https://twitter.com/dog_rates/status/817423860136083457/video/1 1 https://twitter.com/dog_rates/status/749403093750648834/photo/1 1 https://twitter.com/dog_rates/status/667171260800061440/photo/1 1 https://twitter.com/dog_rates/status/674053186244734976/photo/1 1 https://twitter.com/dog_rates/status/772581559778025472/photo/1,https://twitter.com/dog_rates/status/772581559778025472/photo/1,https://twitter.com/dog_rates/status/772581559778025472/photo/1 1 https://twitter.com/dog_rates/status/670789397210615808/photo/1 1 https://twitter.com/dog_rates/status/788178268662984705/photo/1,https://twitter.com/dog_rates/status/788178268662984705/photo/1,https://twitter.com/dog_rates/status/788178268662984705/photo/1,https://twitter.com/dog_rates/status/788178268662984705/photo/1 1 https://twitter.com/dog_rates/status/805826884734976000/video/1 1 http://us.blastingnews.com/news/2017/01/kentucky-teen-helps-lost-yellow-labrador-and-gets-a-huge-surprise-001431969.html?sbdht=_pM1QUzk3wsenGU1giO7UnJ5NGGiKRW9AD5xs2MkaDpYY13JxbtKE4w2_,https://twitter.com/dog_rates/status/826204788643753985/photo/1,https://twitter.com/dog_rates/status/826204788643753985/photo/1,https://twitter.com/dog_rates/status/826204788643753985/photo/1,https://twitter.com/dog_rates/status/826204788643753985/photo/1 1 https://twitter.com/dog_rates/status/670822709593571328/photo/1 1 https://twitter.com/dog_rates/status/668979806671884288/photo/1 1 https://twitter.com/dog_rates/status/668221241640230912/photo/1 1 https://twitter.com/dog_rates/status/861383897657036800/photo/1 1 https://twitter.com/dog_rates/status/666776908487630848/photo/1 1 https://twitter.com/dog_rates/status/689999384604450816/photo/1 1 https://twitter.com/dog_rates/status/697575480820686848/photo/1 1 https://twitter.com/dog_rates/status/744971049620602880/photo/1,https://twitter.com/dog_rates/status/744971049620602880/photo/1,https://twitter.com/dog_rates/status/744971049620602880/photo/1 1 https://twitter.com/dog_rates/status/666050758794694657/photo/1 1 https://twitter.com/dog_rates/status/669972011175813120/photo/1 1 https://twitter.com/dog_rates/status/672272411274932228/photo/1,https://twitter.com/dog_rates/status/672272411274932228/photo/1 1 https://twitter.com/dog_rates/status/719991154352222208/photo/1,https://twitter.com/dog_rates/status/719991154352222208/photo/1 1 https://twitter.com/dog_rates/status/801958328846974976/photo/1 1 https://twitter.com/dog_rates/status/672834301050937345/photo/1 1 https://twitter.com/dog_rates/status/811744202451197953/photo/1 1 https://vine.co/v/hUvHKYrdb1d 1 https://twitter.com/dog_rates/status/760539183865880579/photo/1,https://twitter.com/dog_rates/status/760539183865880579/photo/1,https://twitter.com/dog_rates/status/760539183865880579/photo/1 1 https://twitter.com/dog_rates/status/748977405889503236/photo/1 1 https://twitter.com/dog_rates/status/834931633769889797/photo/1,https://twitter.com/dog_rates/status/834931633769889797/photo/1,https://twitter.com/dog_rates/status/834931633769889797/photo/1 1 https://twitter.com/dog_rates/status/761334018830917632/photo/1 1 https://twitter.com/dog_rates/status/672902681409806336/photo/1 1 https://vine.co/v/5nzYBpl0TY2 1 https://twitter.com/dog_rates/status/708834316713893888/photo/1 1 https://twitter.com/dog_rates/status/727286334147182592/photo/1 1 https://twitter.com/dog_rates/status/700151421916807169/photo/1 1 https://twitter.com/dog_rates/status/747963614829678593/photo/1 1 https://twitter.com/dog_rates/status/844973813909606400/photo/1 1 https://twitter.com/dog_rates/status/679729593985699840/photo/1 1 https://twitter.com/dog_rates/status/749981277374128128/photo/1 1 https://vine.co/v/5ghHLBMMdlV 1 https://vine.co/v/5ztZvHgI17r 1 https://twitter.com/dog_rates/status/689661964914655233/photo/1 1 https://twitter.com/dog_rates/status/888804989199671297/photo/1,https://twitter.com/dog_rates/status/888804989199671297/photo/1 1 https://twitter.com/dog_rates/status/815639385530101762/photo/1 1 https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1 1 https://twitter.com/dog_rates/status/689905486972461056/photo/1,https://twitter.com/dog_rates/status/689905486972461056/photo/1,https://twitter.com/dog_rates/status/689905486972461056/photo/1,https://twitter.com/dog_rates/status/689905486972461056/photo/1 1 https://twitter.com/dog_rates/status/826240494070030336/photo/1 1 https://twitter.com/dog_rates/status/675135153782571009/photo/1 1 https://twitter.com/dog_rates/status/813112105746448384/photo/1 1 https://twitter.com/dog_rates/status/667062181243039745/photo/1 1 https://twitter.com/dog_rates/status/685532292383666176/photo/1 1 https://twitter.com/dog_rates/status/752917284578922496/photo/1 1 https://vine.co/v/5uTVXWvn3Ip 1 https://twitter.com/dog_rates/status/692142790915014657/photo/1,https://twitter.com/dog_rates/status/692142790915014657/photo/1,https://twitter.com/dog_rates/status/692142790915014657/photo/1,https://twitter.com/dog_rates/status/692142790915014657/photo/1 1 https://twitter.com/dog_rates/status/877556246731214848/photo/1 1 https://twitter.com/dog_rates/status/694206574471057408/photo/1 1 https://twitter.com/dogratingrating/status/667548695664070656/photo/1,https://twitter.com/dogratingrating/status/667548695664070656/photo/1 1 https://twitter.com/dog_rates/status/793150605191548928/photo/1 1 https://twitter.com/dog_rates/status/883360690899218434/photo/1 1 https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1 1 https://twitter.com/dog_rates/status/813157409116065792/photo/1,https://twitter.com/dog_rates/status/813157409116065792/photo/1,https://twitter.com/dog_rates/status/813157409116065792/photo/1,https://twitter.com/dog_rates/status/813157409116065792/photo/1 1 https://twitter.com/dog_rates/status/689877686181715968/photo/1 1 https://twitter.com/dog_rates/status/710844581445812225/photo/1 1 https://twitter.com/dog_rates/status/688116655151435777/photo/1 1 https://twitter.com/dog_rates/status/681302363064414209/photo/1 1 https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1 1 https://twitter.com/dog_rates/status/697943111201378304/photo/1 1 https://twitter.com/dog_rates/status/831309418084069378/photo/1 1 https://twitter.com/dog_rates/status/706346369204748288/photo/1,https://twitter.com/dog_rates/status/706346369204748288/photo/1 1 https://twitter.com/dog_rates/status/793210959003287553/photo/1 1 https://twitter.com/dog_rates/status/801538201127157760/photo/1 1 https://twitter.com/dog_rates/status/669216679721873412/photo/1 1 https://twitter.com/dog_rates/status/672995267319328768/photo/1 1 https://twitter.com/dog_rates/status/699691744225525762/photo/1 1 https://twitter.com/dog_rates/status/705898680587526145/photo/1,https://twitter.com/dog_rates/status/705898680587526145/photo/1 1 https://vine.co/v/iEggaEOiLO3,https://vine.co/v/iEggaEOiLO3 1 https://twitter.com/dog_rates/status/887705289381826560/photo/1 1 https://twitter.com/perfy/status/855857318168150016 1 https://twitter.com/dog_rates/status/691675652215414786/photo/1 1 https://twitter.com/dog_rates/status/715696743237730304/photo/1 1 https://twitter.com/dog_rates/status/699801817392291840/photo/1,https://twitter.com/dog_rates/status/699801817392291840/photo/1,https://twitter.com/dog_rates/status/699801817392291840/photo/1,https://twitter.com/dog_rates/status/699801817392291840/photo/1 1 https://twitter.com/dog_rates/status/740995100998766593/photo/1 1 https://twitter.com/dog_rates/status/703041949650034688/photo/1 1 https://twitter.com/dog_rates/status/675878199931371520/photo/1 1 https://twitter.com/dog_rates/status/748307329658011649/photo/1,https://twitter.com/dog_rates/status/748307329658011649/photo/1 1 https://twitter.com/chpsanfrancisco/status/716637124322177024 1 https://twitter.com/dog_rates/status/828650029636317184/photo/1,https://twitter.com/dog_rates/status/828650029636317184/photo/1,https://twitter.com/dog_rates/status/828650029636317184/photo/1 1 https://twitter.com/dog_rates/status/800459316964663297/photo/1 1 https://twitter.com/dog_rates/status/812466873996607488/photo/1 1 https://twitter.com/dog_rates/status/831322785565769729/photo/1 1 https://twitter.com/dog_rates/status/682003177596559360/photo/1 1 https://twitter.com/dog_rates/status/674999807681908736/photo/1 1 https://twitter.com/dog_rates/status/711694788429553666/photo/1,https://twitter.com/dog_rates/status/711694788429553666/photo/1 1 https://twitter.com/dog_rates/status/674372068062928900/photo/1 1 https://twitter.com/dog_rates/status/800388270626521089/photo/1,https://twitter.com/dog_rates/status/800388270626521089/photo/1,https://twitter.com/dog_rates/status/800388270626521089/photo/1 1 https://twitter.com/dog_rates/status/687109925361856513/photo/1,https://twitter.com/dog_rates/status/687109925361856513/photo/1,https://twitter.com/dog_rates/status/687109925361856513/photo/1 1 https://twitter.com/dog_rates/status/685325112850124800/photo/1 1 https://twitter.com/dog_rates/status/718540630683709445/photo/1,https://twitter.com/dog_rates/status/718540630683709445/photo/1 1 https://twitter.com/dog_rates/status/850019790995546112/photo/1,https://twitter.com/dog_rates/status/850019790995546112/photo/1,https://twitter.com/dog_rates/status/850019790995546112/photo/1 1 https://twitter.com/wsaznews/status/759167558763196416 1 https://twitter.com/dog_rates/status/693622659251335168/photo/1 1 https://twitter.com/dog_rates/status/768473857036525572/photo/1 1 https://twitter.com/dog_rates/status/728387165835677696/photo/1 1 https://twitter.com/dog_rates/status/666057090499244032/photo/1 1 https://twitter.com/dog_rates/status/761004547850530816/photo/1 1 https://twitter.com/dog_rates/status/666835007768551424/photo/1 1 https://twitter.com/dog_rates/status/735274964362878976/photo/1,https://twitter.com/dog_rates/status/735274964362878976/photo/1 1 https://twitter.com/dog_rates/status/681339448655802368/photo/1 1 https://twitter.com/dog_rates/status/780601303617732608/photo/1,https://twitter.com/dog_rates/status/780601303617732608/photo/1 1 https://twitter.com/dog_rates/status/683030066213818368/photo/1 1 https://twitter.com/dog_rates/status/666029285002620928/photo/1 1 https://twitter.com/dog_rates/status/670073503555706880/photo/1 1 https://twitter.com/dog_rates/status/670411370698022913/photo/1 1 https://twitter.com/dog_rates/status/710140971284037632/photo/1 1 https://twitter.com/dog_rates/status/666337882303524864/photo/1 1 https://twitter.com/dog_rates/status/777621514455814149/photo/1 1 https://twitter.com/dog_rates/status/889638837579907072/photo/1,https://twitter.com/dog_rates/status/889638837579907072/photo/1 1 https://twitter.com/dog_rates/status/705975130514706432/photo/1,https://twitter.com/dog_rates/status/705975130514706432/photo/1 1 https://twitter.com/dog_rates/status/691444869282295808/photo/1,https://twitter.com/dog_rates/status/691444869282295808/photo/1 1 https://m.facebook.com/story.php?story_fbid=1888712391349242&id=1506300642923754&refsrc=http%3A%2F%2Ft.co%2FURVffYPPjY&_rdr,https://twitter.com/dog_rates/status/812503143955202048/photo/1,https://twitter.com/dog_rates/status/812503143955202048/photo/1 1 https://twitter.com/dog_rates/status/815736392542261248/photo/1,https://twitter.com/dog_rates/status/815736392542261248/photo/1,https://twitter.com/dog_rates/status/815736392542261248/photo/1,https://twitter.com/dog_rates/status/815736392542261248/photo/1 1 https://twitter.com/dog_rates/status/698989035503689728/photo/1 1 https://twitter.com/dog_rates/status/717841801130979328/photo/1 1 https://twitter.com/dog_rates/status/759846353224826880/photo/1 1 https://twitter.com/dog_rates/status/672591762242805761/photo/1 1 https://twitter.com/dog_rates/status/671134062904504320/photo/1 1 https://twitter.com/dog_rates/status/738184450748633089/photo/1 1 https://twitter.com/dog_rates/status/687818504314159109/photo/1 1 https://twitter.com/dog_rates/status/713177543487135744/photo/1 1 https://twitter.com/dog_rates/status/671518598289059840/photo/1 1 https://twitter.com/dog_rates/status/667012601033924608/photo/1 1 https://twitter.com/dog_rates/status/838921590096166913/photo/1 1 https://twitter.com/dog_rates/status/707610948723478529/photo/1,https://twitter.com/dog_rates/status/707610948723478529/photo/1 1 https://twitter.com/dog_rates/status/881536004380872706/video/1 1 https://twitter.com/dog_rates/status/686377065986265092/photo/1 1 https://twitter.com/dog_rates/status/666421158376562688/photo/1 1 https://twitter.com/dog_rates/status/766008592277377025/photo/1 1 https://twitter.com/dog_rates/status/680191257256136705/photo/1 1 https://twitter.com/dog_rates/status/829011960981237760/photo/1,https://twitter.com/dog_rates/status/829011960981237760/photo/1 1 https://twitter.com/dog_rates/status/872261713294495745/photo/1,https://twitter.com/dog_rates/status/872261713294495745/photo/1 1 https://twitter.com/dog_rates/status/714631576617938945/photo/1 1 https://twitter.com/dog_rates/status/705786532653883392/photo/1 1 https://vine.co/v/iEggaEOiLO3 1 https://twitter.com/dog_rates/status/851464819735769094/photo/1,https://twitter.com/dog_rates/status/851464819735769094/photo/1,https://twitter.com/dog_rates/status/851464819735769094/photo/1,https://twitter.com/dog_rates/status/851464819735769094/photo/1 1 https://twitter.com/dog_rates/status/673148804208660480/photo/1 1 https://twitter.com/dog_rates/status/744709971296780288/photo/1 1 https://twitter.com/dog_rates/status/759557299618865152/photo/1,https://twitter.com/dog_rates/status/759557299618865152/photo/1,https://twitter.com/dog_rates/status/759557299618865152/photo/1 1 https://twitter.com/alexmartindawg/status/839289919298224128/photo/1,https://twitter.com/alexmartindawg/status/839289919298224128/photo/1,https://twitter.com/alexmartindawg/status/839289919298224128/photo/1,https://twitter.com/alexmartindawg/status/839289919298224128/photo/1 1 https://twitter.com/dog_rates/status/670435821946826752/photo/1 1 https://gofundme.com/ydvmve-surgery-for-jax,https://twitter.com/dog_rates/status/890971913173991426/photo/1 1 https://twitter.com/dog_rates/status/838083903487373313/photo/1,https://twitter.com/dog_rates/status/838083903487373313/photo/1 1 https://twitter.com/dog_rates/status/699788877217865730/photo/1 1 https://twitter.com/dog_rates/status/690959652130045952/photo/1,https://twitter.com/dog_rates/status/690959652130045952/photo/1,https://twitter.com/dog_rates/status/690959652130045952/photo/1,https://twitter.com/dog_rates/status/690959652130045952/photo/1 1 https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1 1 https://twitter.com/dog_rates/status/804026241225523202/photo/1,https://twitter.com/dog_rates/status/804026241225523202/photo/1,https://twitter.com/dog_rates/status/804026241225523202/photo/1 1 https://twitter.com/dog_rates/status/887101392804085760/photo/1 1 https://twitter.com/dog_rates/status/672264251789176834/photo/1 1 https://twitter.com/dog_rates/status/674805413498527744/video/1 1 https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1 1 https://twitter.com/dog_rates/status/667724302356258817/photo/1 1 https://twitter.com/dog_rates/status/676948236477857792/photo/1 1 https://twitter.com/dog_rates/status/668268907921326080/photo/1 1 https://twitter.com/dog_rates/status/803773340896923648/photo/1,https://twitter.com/dog_rates/status/803773340896923648/photo/1,https://twitter.com/dog_rates/status/803773340896923648/photo/1,https://twitter.com/dog_rates/status/803773340896923648/photo/1 1 https://twitter.com/dog_rates/status/738156290900254721/photo/1 1 https://twitter.com/dog_rates/status/673707060090052608/photo/1,https://twitter.com/dog_rates/status/673707060090052608/photo/1 1 https://twitter.com/dog_rates/status/705102439679201280/photo/1 1 https://twitter.com/dog_rates/status/690374419777196032/photo/1 1 https://twitter.com/dog_rates/status/704819833553219584/photo/1 1 https://twitter.com/dog_rates/status/671520732782923777/photo/1 1 https://twitter.com/dog_rates/status/839239871831150596/photo/1,https://twitter.com/dog_rates/status/839239871831150596/photo/1,https://twitter.com/dog_rates/status/839239871831150596/photo/1 1 https://twitter.com/rachaeleasler/status/865013420445368320/photo/1,https://twitter.com/rachaeleasler/status/865013420445368320/photo/1,https://twitter.com/rachaeleasler/status/865013420445368320/photo/1,https://twitter.com/rachaeleasler/status/865013420445368320/photo/1 1 https://twitter.com/wgnnews/status/706165920809492480 1 https://twitter.com/dog_rates/status/782722598790725632/photo/1,https://twitter.com/dog_rates/status/782722598790725632/photo/1 1 https://twitter.com/dog_rates/status/688179443353796608/photo/1 1 https://twitter.com/dog_rates/status/891815181378084864/photo/1 1 https://twitter.com/katieornah/status/771002130450743296/photo/1,https://twitter.com/katieornah/status/771002130450743296/photo/1 1 https://twitter.com/dog_rates/status/772152991789019136/photo/1,https://twitter.com/dog_rates/status/772152991789019136/photo/1 1 https://twitter.com/dog_rates/status/674422304705744896/photo/1 1 https://twitter.com/dog_rates/status/678255464182861824/photo/1 1 https://twitter.com/dog_rates/status/674781762103414784/photo/1 1 https://twitter.com/dog_rates/status/678446151570427904/photo/1 1 https://twitter.com/dog_rates/status/845306882940190720/photo/1 1 https://twitter.com/dog_rates/status/756526248105566208/photo/1 1 https://twitter.com/dog_rates/status/773704687002451968/photo/1,https://twitter.com/dog_rates/status/773704687002451968/photo/1 1 https://twitter.com/dog_rates/status/687807801670897665/photo/1 1 https://twitter.com/dog_rates/status/730427201120833536/photo/1 1 https://twitter.com/dog_rates/status/824775126675836928/photo/1,https://twitter.com/dog_rates/status/824775126675836928/photo/1 1 https://twitter.com/dog_rates/status/674075285688614912/photo/1 1 https://vine.co/v/ijAlDnuOD0l 1 https://twitter.com/dog_rates/status/706516534877929472/photo/1 1 https://twitter.com/dog_rates/status/678969228704284672/photo/1 1 https://twitter.com/dog_rates/status/679530280114372609/photo/1 1 https://twitter.com/dog_rates/status/670676092097810432/photo/1 1 https://twitter.com/dog_rates/status/666428276349472768/photo/1 1 https://twitter.com/dog_rates/status/778624900596654080/photo/1,https://twitter.com/dog_rates/status/778624900596654080/photo/1 1 https://twitter.com/dog_rates/status/690248561355657216/photo/1 1 https://twitter.com/dog_rates/status/677301033169788928/photo/1 1 https://twitter.com/dog_rates/status/741743634094141440/photo/1,https://twitter.com/dog_rates/status/741743634094141440/photo/1,https://twitter.com/dog_rates/status/741743634094141440/photo/1 1 https://twitter.com/dog_rates/status/671735591348891648/photo/1,https://twitter.com/dog_rates/status/671735591348891648/photo/1,https://twitter.com/dog_rates/status/671735591348891648/photo/1,https://twitter.com/dog_rates/status/671735591348891648/photo/1 1 https://twitter.com/dog_rates/status/750147208377409536/photo/1 1 https://twitter.com/dog_rates/status/763837565564780549/photo/1,https://twitter.com/dog_rates/status/763837565564780549/photo/1 1 https://twitter.com/dog_rates/status/873580283840344065/photo/1 1 https://twitter.com/dog_rates/status/669371483794317312/photo/1 1 https://twitter.com/dog_rates/status/725786712245440512/photo/1 1 https://twitter.com/dog_rates/status/814986499976527872/photo/1 1 https://twitter.com/dog_rates/status/844979544864018432/photo/1,https://twitter.com/dog_rates/status/844979544864018432/photo/1,https://twitter.com/dog_rates/status/844979544864018432/photo/1 1 https://twitter.com/dog_rates/status/681654059175129088/photo/1 1 https://twitter.com/dog_rates/status/841680585030541313/photo/1 1 https://twitter.com/dog_rates/status/700864154249383937/photo/1 1 https://twitter.com/dog_rates/status/869772420881756160/photo/1 1 https://twitter.com/dog_rates/status/785170936622350336/photo/1,https://twitter.com/dog_rates/status/785170936622350336/photo/1,https://twitter.com/dog_rates/status/785170936622350336/photo/1,https://twitter.com/dog_rates/status/785170936622350336/photo/1 1 https://twitter.com/dog_rates/status/699434518667751424/photo/1 1 https://twitter.com/dog_rates/status/870308999962521604/photo/1,https://twitter.com/dog_rates/status/870308999962521604/photo/1 1 https://twitter.com/dog_rates/status/825829644528148480/photo/1,https://twitter.com/dog_rates/status/825829644528148480/photo/1 1 https://twitter.com/dog_rates/status/700847567345688576/photo/1 1 https://twitter.com/dog_rates/status/752660715232722944/photo/1,https://twitter.com/dog_rates/status/752660715232722944/photo/1 1 https://twitter.com/dog_rates/status/666691418707132416/photo/1 1 https://twitter.com/dog_rates/status/684800227459624960/photo/1 1 https://twitter.com/dog_rates/status/674262580978937856/photo/1 1 https://twitter.com/dog_rates/status/683357973142474752/photo/1 1 https://twitter.com/dog_rates/status/696877980375769088/photo/1 1 https://twitter.com/dog_rates/status/886366144734445568/photo/1,https://twitter.com/dog_rates/status/886366144734445568/photo/1 1 https://twitter.com/dog_rates/status/797971864723324932/photo/1,https://twitter.com/dog_rates/status/797971864723324932/photo/1 1 https://twitter.com/dog_rates/status/778286810187399168/photo/1,https://twitter.com/dog_rates/status/778286810187399168/photo/1 1 https://twitter.com/dog_rates/status/691090071332753408/photo/1 1 https://twitter.com/dog_rates/status/674646392044941312/photo/1 1 https://twitter.com/dog_rates/status/872122724285648897/photo/1,https://twitter.com/dog_rates/status/872122724285648897/photo/1 1 https://twitter.com/dog_rates/status/680221482581123072/photo/1 1 https://twitter.com/dog_rates/status/716791146589110272/photo/1 1 https://twitter.com/dog_rates/status/705970349788291072/photo/1 1 https://twitter.com/dog_rates/status/871032628920680449/photo/1 1 https://twitter.com/dog_rates/status/779123168116150273/photo/1 1 https://twitter.com/dog_rates/status/690649993829576704/photo/1 1 https://twitter.com/dog_rates/status/679475951516934144/photo/1 1 https://twitter.com/dog_rates/status/668826086256599040/photo/1 1 https://twitter.com/dog_rates/status/682242692827447297/photo/1 1 https://twitter.com/dog_rates/status/710153181850935296/photo/1,https://twitter.com/dog_rates/status/710153181850935296/photo/1 1 https://twitter.com/dog_rates/status/678341075375947776/photo/1 1 https://twitter.com/dog_rates/status/793165685325201412/photo/1 1 https://twitter.com/dog_rates/status/707315916783140866/photo/1,https://twitter.com/dog_rates/status/707315916783140866/photo/1 1 https://twitter.com/dog_rates/status/706901761596989440/photo/1 1 https://twitter.com/dog_rates/status/849336543269576704/photo/1 1 https://twitter.com/dog_rates/status/761004547850530816/photo/1,https://twitter.com/dog_rates/status/761004547850530816/photo/1 1 https://twitter.com/dog_rates/status/672614745925664768/photo/1 1 https://twitter.com/dog_rates/status/670691627984359425/photo/1 1 https://twitter.com/dog_rates/status/670086499208155136/photo/1 1 https://twitter.com/dog_rates/status/828708714936930305/photo/1,https://twitter.com/dog_rates/status/828708714936930305/photo/1 1 https://twitter.com/dog_rates/status/669037058363662336/photo/1 1 https://twitter.com/dog_rates/status/669214165781868544/photo/1 1 https://twitter.com/dog_rates/status/668631377374486528/photo/1 1 https://twitter.com/dog_rates/status/669359674819481600/photo/1 1 https://twitter.com/dog_rates/status/854482394044301312/photo/1 1 https://twitter.com/dog_rates/status/791672322847637504/photo/1 1 https://twitter.com/dog_rates/status/759047813560868866/photo/1,https://twitter.com/dog_rates/status/759047813560868866/photo/1 1 https://twitter.com/dog_rates/status/839990271299457024/photo/1,https://twitter.com/dog_rates/status/839990271299457024/photo/1 1 https://twitter.com/dog_rates/status/790337589677002753/photo/1 1 https://twitter.com/dog_rates/status/669661792646373376/photo/1 1 https://twitter.com/dog_rates/status/821522889702862852/photo/1 1 https://twitter.com/dog_rates/status/753026973505581056/photo/1,https://twitter.com/dog_rates/status/753026973505581056/photo/1,https://twitter.com/dog_rates/status/753026973505581056/photo/1,https://twitter.com/dog_rates/status/753026973505581056/photo/1 1 https://twitter.com/dog_rates/status/716439118184652801/photo/1 1 https://twitter.com/dog_rates/status/807010152071229440/photo/1 1 https://twitter.com/dog_rates/status/670786190031921152/photo/1 1 https://twitter.com/dog_rates/status/673213039743795200/photo/1 1 https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1 1 https://twitter.com/dog_rates/status/796080075804475393/photo/1 1 https://twitter.com/dog_rates/status/674764817387900928/photo/1,https://twitter.com/dog_rates/status/674764817387900928/photo/1 1 https://twitter.com/dog_rates/status/680583894916304897/photo/1,https://twitter.com/dog_rates/status/680583894916304897/photo/1,https://twitter.com/dog_rates/status/680583894916304897/photo/1,https://twitter.com/dog_rates/status/680583894916304897/photo/1 1 https://twitter.com/dog_rates/status/672475084225949696/photo/1 1 https://twitter.com/dog_rates/status/781251288990355457/photo/1,https://twitter.com/dog_rates/status/781251288990355457/photo/1 1 https://twitter.com/dog_rates/status/674752233200820224/photo/1,https://twitter.com/dog_rates/status/674752233200820224/photo/1 1 https://twitter.com/dog_rates/status/708479650088034305/photo/1 1 https://twitter.com/dog_rates/status/686947101016735744/photo/1 1 https://twitter.com/dog_rates/status/696900204696625153/photo/1 1 https://twitter.com/dog_rates/status/788765914992902144/photo/1 1 https://twitter.com/dog_rates/status/668484198282485761/photo/1 1 https://twitter.com/dog_rates/status/890240255349198849/photo/1 1 https://twitter.com/dog_rates/status/705428427625635840/photo/1 1 https://twitter.com/dog_rates/status/667211855547486208/photo/1 1 https://twitter.com/dog_rates/status/683834909291606017/video/1 1 https://twitter.com/dog_rates/status/809084759137812480/photo/1 1 https://twitter.com/dog_rates/status/781163403222056960/photo/1 1 https://twitter.com/dog_rates/status/734787690684657664/photo/1,https://twitter.com/dog_rates/status/734787690684657664/photo/1,https://twitter.com/dog_rates/status/734787690684657664/photo/1,https://twitter.com/dog_rates/status/734787690684657664/photo/1 1 https://twitter.com/dog_rates/status/863432100342583297/photo/1 1 https://twitter.com/dog_rates/status/865718153858494464/photo/1 1 https://twitter.com/dog_rates/status/789268448748703744/photo/1 1 https://twitter.com/dog_rates/status/673697980713705472/photo/1,https://twitter.com/dog_rates/status/673697980713705472/photo/1 1 https://twitter.com/dog_rates/status/817423860136083457/video/1,https://twitter.com/dog_rates/status/817423860136083457/video/1 1 https://twitter.com/dog_rates/status/668154635664932864/photo/1 1 https://twitter.com/dog_rates/status/679527802031484928/photo/1 1 https://twitter.com/dog_rates/status/879376492567855104/photo/1 1 https://twitter.com/dog_rates/status/681231109724700672/photo/1 1 https://twitter.com/dog_rates/status/699413908797464576/photo/1 1 https://twitter.com/dog_rates/status/674265582246694913/photo/1 1 https://twitter.com/dog_rates/status/675707330206547968/photo/1 1 https://twitter.com/dog_rates/status/668815180734689280/photo/1 1 https://twitter.com/rachel2195/status/876850772322988033/photo/1,https://twitter.com/rachel2195/status/876850772322988033/photo/1,https://twitter.com/rachel2195/status/876850772322988033/photo/1,https://twitter.com/rachel2195/status/876850772322988033/photo/1 1 https://twitter.com/dog_rates/status/801167903437357056/photo/1,https://twitter.com/dog_rates/status/801167903437357056/photo/1 1 https://twitter.com/dog_rates/status/696488710901260288/photo/1 1 https://twitter.com/dog_rates/status/677269281705472000/photo/1 1 https://twitter.com/dog_rates/status/793500921481273345/photo/1,https://twitter.com/dog_rates/status/793500921481273345/photo/1 1 https://twitter.com/dog_rates/status/666353288456101888/photo/1 1 https://twitter.com/dog_rates/status/668567822092664832/photo/1 1 https://twitter.com/dog_rates/status/784826020293709826/photo/1,https://twitter.com/dog_rates/status/784826020293709826/photo/1 1 https://www.patreon.com/WeRateDogs,https://twitter.com/Patreon/status/780465709297995776/photo/1,https://www.patreon.com/WeRateDogs,https://twitter.com/Patreon/status/780465709297995776/photo/1 1 https://twitter.com/dog_rates/status/745789745784041472/photo/1 1 https://twitter.com/dog_rates/status/748575535303884801/photo/1 1 https://twitter.com/dog_rates/status/719367763014393856/photo/1 1 https://twitter.com/dog_rates/status/666826780179869698/photo/1 1 https://twitter.com/dog_rates/status/680494726643068929/photo/1 1 https://twitter.com/dog_rates/status/831262627380748289/photo/1 1 https://twitter.com/dog_rates/status/686730991906516992/photo/1 1 https://twitter.com/dog_rates/status/669573570759163904/photo/1 1 https://twitter.com/dog_rates/status/668226093875376128/photo/1 1 https://twitter.com/dog_rates/status/684481074559381504/photo/1 1 https://twitter.com/dog_rates/status/677557565589463040/photo/1 1 https://twitter.com/dog_rates/status/671357843010908160/photo/1,https://twitter.com/dog_rates/status/671357843010908160/photo/1,https://twitter.com/dog_rates/status/671357843010908160/photo/1,https://twitter.com/dog_rates/status/671357843010908160/photo/1 1 https://twitter.com/dog_rates/status/675534494439489536/photo/1 1 https://twitter.com/dog_rates/status/776113305656188928/photo/1,https://twitter.com/dog_rates/status/776113305656188928/photo/1 1 https://twitter.com/dog_rates/status/697995514407682048/photo/1 1 https://vine.co/v/iOL792n5hz2 1 https://twitter.com/deadspin/status/806570933175652352 1 https://twitter.com/dog_rates/status/686749460672679938/photo/1 1 https://twitter.com/dog_rates/status/785639753186217984/photo/1,https://twitter.com/dog_rates/status/785639753186217984/photo/1 1 https://twitter.com/dog_rates/status/749395845976588288/photo/1,https://twitter.com/dog_rates/status/749395845976588288/photo/1 1 https://twitter.com/dog_rates/status/816816676327063552/photo/1 1 https://twitter.com/dog_rates/status/712438159032893441/photo/1 1 https://twitter.com/dog_rates/status/707021089608753152/photo/1,https://twitter.com/dog_rates/status/707021089608753152/photo/1 1 https://twitter.com/dog_rates/status/693155686491000832/photo/1,https://twitter.com/dog_rates/status/693155686491000832/photo/1,https://twitter.com/dog_rates/status/693155686491000832/photo/1,https://twitter.com/dog_rates/status/693155686491000832/photo/1 1 https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1 1 https://twitter.com/dog_rates/status/728751179681943552/photo/1 1 https://twitter.com/dog_rates/status/666099513787052032/photo/1 1 https://twitter.com/dog_rates/status/701570477911896070/photo/1,https://twitter.com/dog_rates/status/701570477911896070/photo/1 1 https://twitter.com/dog_rates/status/737678689543020544/photo/1 1 https://twitter.com/dog_rates/status/681891461017812993/photo/1 1 https://twitter.com/dog_rates/status/697255105972801536/photo/1 1 https://twitter.com/dog_rates/status/846042936437604353/photo/1 1 https://twitter.com/dog_rates/status/783391753726550016/photo/1,https://twitter.com/dog_rates/status/783391753726550016/photo/1,https://twitter.com/dog_rates/status/783391753726550016/photo/1,https://twitter.com/dog_rates/status/783391753726550016/photo/1 1 https://twitter.com/dog_rates/status/697270446429966336/photo/1 1 https://twitter.com/dog_rates/status/690021994562220032/photo/1 1 https://twitter.com/dog_rates/status/796031486298386433/photo/1 1 https://twitter.com/dog_rates/status/681242418453299201/photo/1 1 https://twitter.com/dog_rates/status/788150585577050112/photo/1,https://twitter.com/dog_rates/status/788150585577050112/photo/1,https://twitter.com/dog_rates/status/788150585577050112/photo/1,https://twitter.com/dog_rates/status/788150585577050112/photo/1 1 https://twitter.com/dog_rates/status/705591895322394625/photo/1 1 https://twitter.com/dog_rates/status/672980819271634944/photo/1 1 https://twitter.com/dog_rates/status/851224888060895234/photo/1,https://twitter.com/dog_rates/status/851224888060895234/photo/1,https://twitter.com/dog_rates/status/851224888060895234/photo/1,https://twitter.com/dog_rates/status/851224888060895234/photo/1 1 https://twitter.com/dog_rates/status/698953797952008193/photo/1 1 https://twitter.com/dog_rates/status/671186162933985280/photo/1 1 https://twitter.com/dog_rates/status/707059547140169728/photo/1,https://twitter.com/dog_rates/status/707059547140169728/photo/1 1 https://twitter.com/dog_rates/status/713900603437621249/photo/1 1 https://vine.co/v/iiI3wmqXYmA 1 https://twitter.com/dog_rates/status/697242256848379904/photo/1 1 https://twitter.com/dog_rates/status/672481316919734272/photo/1 1 https://twitter.com/dog_rates/status/783466772167098368/photo/1,https://twitter.com/dog_rates/status/783466772167098368/photo/1 1 https://twitter.com/dog_rates/status/745422732645535745/photo/1 1 https://twitter.com/dog_rates/status/670403879788544000/photo/1 1 https://vine.co/v/5ApKetxzmTB 1 https://twitter.com/dog_rates/status/693590843962331137/photo/1 1 https://twitter.com/dog_rates/status/673689733134946305/photo/1,https://twitter.com/dog_rates/status/673689733134946305/photo/1 1 https://twitter.com/dog_rates/status/789986466051088384/photo/1,https://twitter.com/dog_rates/status/789986466051088384/photo/1 1 https://twitter.com/dog_rates/status/867900495410671616/photo/1 1 https://twitter.com/dog_rates/status/807106840509214720/video/1 1 https://twitter.com/dog_rates/status/778650543019483137/photo/1,https://twitter.com/dog_rates/status/778650543019483137/photo/1,https://twitter.com/dog_rates/status/778650543019483137/photo/1 1 https://twitter.com/dog_rates/status/813066809284972545/photo/1 1 https://twitter.com/dog_rates/status/678675843183484930/photo/1 1 https://twitter.com/dog_rates/status/775364825476165632/photo/1,https://twitter.com/dog_rates/status/775364825476165632/photo/1,https://twitter.com/dog_rates/status/775364825476165632/photo/1,https://twitter.com/dog_rates/status/775364825476165632/photo/1 1 https://twitter.com/dog_rates/status/667546741521195010/photo/1 1 https://twitter.com/dog_rates/status/670361874861563904/photo/1 1 https://twitter.com/dog_rates/status/668633411083464705/photo/1,https://twitter.com/dog_rates/status/668633411083464705/photo/1 1 https://vine.co/v/iHhBOTl5p9z 1 https://twitter.com/dog_rates/status/710997087345876993/photo/1 1 https://twitter.com/dog_rates/status/797545162159308800/photo/1,https://twitter.com/dog_rates/status/797545162159308800/photo/1,https://twitter.com/dog_rates/status/797545162159308800/photo/1,https://twitter.com/dog_rates/status/797545162159308800/photo/1 1 https://twitter.com/dog_rates/status/687476254459715584/photo/1 1 https://twitter.com/dog_rates/status/736225175608430592/photo/1 1 https://twitter.com/dog_rates/status/681610798867845120/photo/1 1 https://twitter.com/dog_rates/status/674638615994089473/photo/1 1 https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1 1 https://twitter.com/dog_rates/status/833826103416520705/photo/1,https://twitter.com/dog_rates/status/833826103416520705/photo/1 1 https://twitter.com/dog_rates/status/793845145112371200/photo/1 1 https://twitter.com/dog_rates/status/671896809300709376/photo/1,https://twitter.com/dog_rates/status/671896809300709376/photo/1 1 https://twitter.com/dog_rates/status/704480331685040129/photo/1 1 https://twitter.com/dog_rates/status/673708611235921920/photo/1 1 https://twitter.com/dog_rates/status/819347104292290561/photo/1,https://twitter.com/dog_rates/status/819347104292290561/photo/1,https://twitter.com/dog_rates/status/819347104292290561/photo/1 1 https://twitter.com/dog_rates/status/727524757080539137/photo/1,https://twitter.com/dog_rates/status/727524757080539137/photo/1 1 https://twitter.com/dog_rates/status/828011680017821696/photo/1,https://twitter.com/dog_rates/status/828011680017821696/photo/1 1 https://twitter.com/dog_rates/status/670385711116361728/photo/1 1 https://twitter.com/dog_rates/status/672538107540070400/photo/1 1 https://twitter.com/dog_rates/status/667915453470232577/photo/1 1 https://twitter.com/dog_rates/status/670319130621435904/photo/1 1 https://twitter.com/dog_rates/status/822859134160621569/photo/1 1 https://twitter.com/ChinoChinako/status/800065028116385792/photo/1,https://twitter.com/ChinoChinako/status/800065028116385792/photo/1,https://twitter.com/ChinoChinako/status/800065028116385792/photo/1 1 https://twitter.com/dog_rates/status/685321586178670592/photo/1 1 https://twitter.com/dog_rates/status/675798442703122432/photo/1 1 https://twitter.com/dog_rates/status/683828599284170753/photo/1 1 https://twitter.com/dog_rates/status/702539513671897089/photo/1,https://twitter.com/dog_rates/status/702539513671897089/photo/1,https://twitter.com/dog_rates/status/702539513671897089/photo/1 1 https://twitter.com/dog_rates/status/670465786746662913/photo/1 1 https://twitter.com/dog_rates/status/745433870967832576/photo/1,https://twitter.com/dog_rates/status/745433870967832576/photo/1,https://twitter.com/dog_rates/status/745433870967832576/photo/1 1 https://twitter.com/dog_rates/status/680798457301471234/photo/1 1 https://twitter.com/dog_rates/status/672988786805112832/photo/1 1 https://twitter.com/dog_rates/status/828372645993398273/photo/1 1 https://twitter.com/dog_rates/status/813800681631023104/photo/1 1 https://twitter.com/dog_rates/status/793256262322548741/photo/1 1 https://twitter.com/dog_rates/status/676575501977128964/photo/1 1 https://twitter.com/dog_rates/status/822244816520155136/photo/1 1 https://vine.co/v/5rt6T3qm7hL 1 https://twitter.com/dog_rates/status/693642232151285760/photo/1 1 https://twitter.com/dog_rates/status/667924896115245057/photo/1 1 https://twitter.com/dog_rates/status/834209720923721728/photo/1,https://twitter.com/dog_rates/status/834209720923721728/photo/1 1 https://twitter.com/dog_rates/status/666996132027977728/photo/1 1 https://twitter.com/dog_rates/status/699088579889332224/photo/1 1 https://twitter.com/dog_rates/status/742423170473463808/photo/1 1 https://twitter.com/dog_rates/status/694001791655137281/photo/1,https://twitter.com/dog_rates/status/694001791655137281/photo/1 1 https://twitter.com/dog_rates/status/832273440279240704/video/1 1 https://twitter.com/dog_rates/status/819924195358416896/video/1 1 https://twitter.com/dog_rates/status/680497766108381184/photo/1 1 https://twitter.com/dog_rates/status/668872652652679168/photo/1 1 https://twitter.com/dog_rates/status/677228873407442944/photo/1 1 https://twitter.com/dog_rates/status/692905862751522816/photo/1 1 https://twitter.com/dog_rates/status/674045139690631169/photo/1 1 https://twitter.com/dog_rates/status/669324657376567296/photo/1 1 https://twitter.com/dog_rates/status/832397543355072512/photo/1,https://twitter.com/dog_rates/status/832397543355072512/photo/1 1 https://twitter.com/dog_rates/status/694329668942569472/photo/1 1 https://twitter.com/dog_rates/status/712097430750289920/photo/1 1 https://twitter.com/dog_rates/status/869596645499047938/photo/1,https://twitter.com/dog_rates/status/869596645499047938/photo/1 1 https://twitter.com/dog_rates/status/695051054296211456/photo/1,https://twitter.com/dog_rates/status/695051054296211456/photo/1 1 https://twitter.com/dog_rates/status/667176164155375616/photo/1 1 https://twitter.com/dog_rates/status/673919437611909120/photo/1 1 https://twitter.com/dog_rates/status/673656262056419329/photo/1 1 https://twitter.com/dog_rates/status/732726085725589504/photo/1 1 https://twitter.com/dog_rates/status/672640509974827008/photo/1 1 https://twitter.com/dog_rates/status/718613305783398402/photo/1 1 https://twitter.com/dog_rates/status/670727704916926465/photo/1 1 https://twitter.com/dog_rates/status/674754018082705410/photo/1 1 https://vine.co/v/i1LriMBmX6W 1 https://twitter.com/dog_rates/status/703631701117943808/photo/1,https://twitter.com/dog_rates/status/703631701117943808/photo/1,https://twitter.com/dog_rates/status/703631701117943808/photo/1,https://twitter.com/dog_rates/status/703631701117943808/photo/1 1 https://twitter.com/dog_rates/status/876484053909872640/photo/1 1 https://twitter.com/dog_rates/status/670782429121134593/photo/1 1 https://twitter.com/dog_rates/status/688916208532455424/photo/1,https://twitter.com/dog_rates/status/688916208532455424/photo/1 1 https://twitter.com/dog_rates/status/836989968035819520/photo/1 1 https://twitter.com/dog_rates/status/676957860086095872/video/1 1 https://twitter.com/dog_rates/status/673345638550134785/photo/1 1 https://vine.co/v/iqMjlxULzbn,https://vine.co/v/iqMjlxULzbn 1 https://twitter.com/dog_rates/status/784517518371221505/photo/1,https://twitter.com/dog_rates/status/784517518371221505/photo/1,https://twitter.com/dog_rates/status/784517518371221505/photo/1 1 https://twitter.com/dog_rates/status/674737130913071104/photo/1 1 https://twitter.com/dog_rates/status/822244816520155136/photo/1,https://twitter.com/dog_rates/status/822244816520155136/photo/1 1 https://twitter.com/dog_rates/status/666094000022159362/photo/1 1 https://twitter.com/dog_rates/status/679722016581222400/photo/1 1 https://twitter.com/dog_rates/status/790277117346975746/photo/1 1 https://twitter.com/dog_rates/status/712085617388212225/photo/1,https://twitter.com/dog_rates/status/712085617388212225/photo/1,https://twitter.com/dog_rates/status/712085617388212225/photo/1 1 https://twitter.com/dog_rates/status/741067306818797568/photo/1,https://twitter.com/dog_rates/status/741067306818797568/photo/1 1 https://twitter.com/dog_rates/status/697259378236399616/photo/1 1 https://twitter.com/dog_rates/status/884441805382717440/photo/1 1 https://twitter.com/dog_rates/status/706265994973601792/photo/1 1 https://twitter.com/dog_rates/status/673612854080196609/photo/1 1 https://twitter.com/dog_rates/status/847116187444137987/photo/1 1 https://twitter.com/dog_rates/status/671109016219725825/photo/1 1 https://twitter.com/dog_rates/status/762035686371364864/video/1 1 https://twitter.com/dog_rates/status/780459368902959104/photo/1 1 https://twitter.com/dog_rates/status/707411934438625280/photo/1 1 https://twitter.com/dog_rates/status/677698403548192770/photo/1 1 https://twitter.com/dog_rates/status/815966073409433600/video/1,https://twitter.com/dog_rates/status/815966073409433600/video/1 1 https://twitter.com/dog_rates/status/775729183532220416/photo/1 1 https://twitter.com/dog_rates/status/745712589599014916/photo/1 1 https://twitter.com/dog_rates/status/794332329137291264/photo/1 1 https://twitter.com/dog_rates/status/852311364735569921/photo/1 1 https://vine.co/v/ixHYvdxUx1L 1 https://twitter.com/dog_rates/status/890609185150312448/photo/1 1 https://twitter.com/dog_rates/status/748705597323898880/video/1 1 https://vine.co/v/eQjxxYaQ60K 1 https://twitter.com/dog_rates/status/692752401762250755/photo/1 1 https://twitter.com/dog_rates/status/879862464715927552/photo/1,https://twitter.com/dog_rates/status/879862464715927552/photo/1,https://twitter.com/dog_rates/status/879862464715927552/photo/1 1 https://twitter.com/dog_rates/status/760656994973933572/photo/1,https://twitter.com/dog_rates/status/760656994973933572/photo/1 1 https://twitter.com/dog_rates/status/774757898236878852/photo/1 1 https://twitter.com/dog_rates/status/672160042234327040/photo/1 1 https://twitter.com/dog_rates/status/746131877086527488/photo/1 1 https://twitter.com/dog_rates/status/835297930240217089/photo/1 1 https://twitter.com/dog_rates/status/708109389455101952/photo/1 1 https://twitter.com/dog_rates/status/672884426393653248/photo/1 1 https://twitter.com/dog_rates/status/870804317367881728/photo/1 1 https://twitter.com/dog_rates/status/668627278264475648/photo/1 1 https://twitter.com/dog_rates/status/669597912108789760/photo/1 1 https://twitter.com/dog_rates/status/678767140346941444/photo/1 1 https://twitter.com/dog_rates/status/882762694511734784/photo/1 1 https://twitter.com/dog_rates/status/843235543001513987/photo/1,https://twitter.com/dog_rates/status/843235543001513987/photo/1,https://twitter.com/dog_rates/status/843235543001513987/photo/1 1 https://twitter.com/dog_rates/status/702598099714314240/photo/1 1 https://twitter.com/dog_rates/status/670427002554466305/photo/1 1 https://vine.co/v/iOWwUPH1hrw 1 https://twitter.com/dog_rates/status/674269164442398721/photo/1 1 https://twitter.com/dog_rates/status/883117836046086144/photo/1,https://twitter.com/dog_rates/status/883117836046086144/photo/1 1 https://twitter.com/dog_rates/status/675501075957489664/photo/1 1 https://twitter.com/dog_rates/status/677328882937298944/photo/1 1 https://twitter.com/dog_rates/status/760893934457552897/photo/1 1 https://twitter.com/dog_rates/status/888078434458587136/photo/1,https://twitter.com/dog_rates/status/888078434458587136/photo/1 1 https://twitter.com/dog_rates/status/682962037429899265/photo/1 1 https://twitter.com/dog_rates/status/719339463458033665/photo/1 1 https://twitter.com/dog_rates/status/667544320556335104/photo/1 1 https://twitter.com/dog_rates/status/704499785726889984/photo/1 1 https://twitter.com/dog_rates/status/688908934925697024/photo/1 1 https://twitter.com/dog_rates/status/888554962724278272/photo/1,https://twitter.com/dog_rates/status/888554962724278272/photo/1,https://twitter.com/dog_rates/status/888554962724278272/photo/1,https://twitter.com/dog_rates/status/888554962724278272/photo/1 1 https://twitter.com/dogratingrating/status/667548415174144001/photo/1,https://twitter.com/dogratingrating/status/667548415174144001/photo/1 1 https://twitter.com/dog_rates/status/889665388333682689/photo/1 1 https://twitter.com/dog_rates/status/674082852460433408/photo/1 1 https://twitter.com/dog_rates/status/667090893657276420/photo/1 1 https://twitter.com/dog_rates/status/733822306246479872/photo/1 1 https://twitter.com/dog_rates/status/868622495443632128/photo/1 1 https://twitter.com/dog_rates/status/720043174954147842/photo/1 1 https://twitter.com/dog_rates/status/709449600415961088/photo/1,https://twitter.com/dog_rates/status/709449600415961088/photo/1 1 https://twitter.com/dog_rates/status/756998049151549440/photo/1,https://twitter.com/dog_rates/status/756998049151549440/photo/1,https://twitter.com/dog_rates/status/756998049151549440/photo/1,https://twitter.com/dog_rates/status/756998049151549440/photo/1 1 https://twitter.com/dog_rates/status/673715861853720576/photo/1 1 https://twitter.com/dog_rates/status/689623661272240129/photo/1,https://twitter.com/dog_rates/status/689623661272240129/photo/1 1 https://twitter.com/dog_rates/status/721001180231503872/photo/1 1 https://vine.co/v/iwAjdlEjwMl 1 https://twitter.com/dog_rates/status/681579835668455424/photo/1 1 https://twitter.com/dog_rates/status/813172488309972993/photo/1 1 https://twitter.com/dog_rates/status/785872687017132033/video/1 1 https://twitter.com/dog_rates/status/883838122936631299/photo/1 1 https://vine.co/v/5QWd3LZqXxd,https://vine.co/v/5QWd3LZqXxd 1 https://twitter.com/dog_rates/status/667188689915760640/photo/1 1 https://twitter.com/dog_rates/status/670037189829525505/photo/1 1 https://twitter.com/dog_rates/status/670815497391357952/photo/1 1 https://twitter.com/dog_rates/status/666411507551481857/photo/1 1 https://twitter.com/dog_rates/status/869702957897576449/photo/1 1 https://twitter.com/dog_rates/status/733109485275860992/photo/1,https://twitter.com/dog_rates/status/733109485275860992/photo/1 1 https://twitter.com/dog_rates/status/671743150407421952/photo/1 1 https://twitter.com/dog_rates/status/742423170473463808/photo/1,https://twitter.com/dog_rates/status/742423170473463808/photo/1 1 https://twitter.com/dog_rates/status/821149554670182400/video/1 1 https://twitter.com/dog_rates/status/711732680602345472/photo/1,https://twitter.com/dog_rates/status/711732680602345472/photo/1,https://twitter.com/dog_rates/status/711732680602345472/photo/1 1 https://twitter.com/dog_rates/status/863079547188785154/photo/1 1 https://twitter.com/dog_rates/status/670374371102445568/photo/1 1 https://twitter.com/dog_rates/status/701952816642965504/photo/1 1 https://twitter.com/dog_rates/status/708026248782585858/video/1 1 https://twitter.com/dog_rates/status/671138694582165504/photo/1 1 https://twitter.com/dog_rates/status/747816857231626240/photo/1 1 https://twitter.com/dog_rates/status/680161097740095489/photo/1 1 https://twitter.com/dog_rates/status/818259473185828864/photo/1 1 https://twitter.com/dog_rates/status/805207613751304193/photo/1 1 https://twitter.com/tallylott/status/860914485250469888/photo/1,https://twitter.com/tallylott/status/860914485250469888/photo/1,https://twitter.com/tallylott/status/860914485250469888/photo/1,https://twitter.com/tallylott/status/860914485250469888/photo/1 1 https://twitter.com/dog_rates/status/776201521193218049/photo/1 1 https://twitter.com/dog_rates/status/693231807727280129/photo/1 1 https://vine.co/v/iAP0Ugzi2PO 1 https://twitter.com/dog_rates/status/776218204058357768/photo/1,https://twitter.com/dog_rates/status/776218204058357768/photo/1,https://twitter.com/dog_rates/status/776218204058357768/photo/1 1 https://twitter.com/dog_rates/status/748699167502000129/photo/1,https://twitter.com/dog_rates/status/748699167502000129/photo/1 1 https://twitter.com/dog_rates/status/814153002265309185/photo/1 1 https://twitter.com/dog_rates/status/765222098633691136/photo/1 1 https://twitter.com/dog_rates/status/860184849394610176/photo/1 1 https://twitter.com/dog_rates/status/684940049151070208/photo/1,https://twitter.com/dog_rates/status/684940049151070208/photo/1 1 https://twitter.com/dog_rates/status/763837565564780549/photo/1 1 https://twitter.com/dog_rates/status/700890391244103680/photo/1 1 https://twitter.com/dog_rates/status/699370870310113280/photo/1 1 https://twitter.com/dog_rates/status/793195938047070209/photo/1,https://twitter.com/dog_rates/status/793195938047070209/photo/1 1 https://twitter.com/dog_rates/status/671122204919246848/photo/1 1 https://twitter.com/dog_rates/status/668544745690562560/photo/1 1 https://www.gofundme.com/meeko-needs-heart-surgery,https://twitter.com/dog_rates/status/857393404942143489/photo/1,https://twitter.com/dog_rates/status/857393404942143489/photo/1,https://twitter.com/dog_rates/status/857393404942143489/photo/1,https://twitter.com/dog_rates/status/857393404942143489/photo/1 1 https://twitter.com/dog_rates/status/811627233043480576/photo/1 1 https://twitter.com/dog_rates/status/670290420111441920/photo/1 1 https://twitter.com/dog_rates/status/850380195714523136/video/1 1 https://twitter.com/dog_rates/status/681261549936340994/photo/1 1 https://twitter.com/dog_rates/status/727685679342333952/photo/1 1 https://twitter.com/dog_rates/status/753655901052166144/photo/1 1 https://twitter.com/dog_rates/status/815390420867969024/photo/1 1 https://twitter.com/dog_rates/status/834458053273591808/photo/1 1 https://twitter.com/dog_rates/status/723688335806480385/photo/1,https://twitter.com/dog_rates/status/723688335806480385/photo/1 1 https://twitter.com/dog_rates/status/684959798585110529/photo/1 1 https://twitter.com/dog_rates/status/772117678702071809/photo/1 1 https://twitter.com/dog_rates/status/700796979434098688/photo/1 1 https://twitter.com/dog_rates/status/788908386943430656/photo/1 1 https://twitter.com/dog_rates/status/753398408988139520/video/1 1 https://twitter.com/dog_rates/status/778990705243029504/photo/1,https://twitter.com/dog_rates/status/778990705243029504/photo/1 1 https://twitter.com/dog_rates/status/675113801096802304/photo/1 1 https://vine.co/v/iJWKejYdLlh 1 https://twitter.com/dog_rates/status/793120401413079041/photo/1 1 https://vine.co/v/i1wrljBUjAu 1 https://twitter.com/dog_rates/status/678800283649069056/photo/1 1 https://twitter.com/dog_rates/status/686007916130873345/photo/1 1 https://twitter.com/dog_rates/status/673709992831262724/photo/1 1 https://twitter.com/dog_rates/status/831911600680497154/photo/1,https://twitter.com/dog_rates/status/831911600680497154/photo/1,https://twitter.com/dog_rates/status/831911600680497154/photo/1,https://twitter.com/dog_rates/status/831911600680497154/photo/1 1 https://twitter.com/dog_rates/status/719551379208073216/photo/1 1 https://twitter.com/dog_rates/status/853760880890318849/photo/1 1 https://twitter.com/dog_rates/status/872967104147763200/photo/1,https://twitter.com/dog_rates/status/872967104147763200/photo/1 1 https://twitter.com/dog_rates/status/669942763794931712/photo/1 1 https://twitter.com/dog_rates/status/773547596996571136/photo/1 1 https://twitter.com/dog_rates/status/811985624773361665/photo/1 1 https://twitter.com/dog_rates/status/787322443945877504/photo/1 1 https://twitter.com/dog_rates/status/793601777308463104/photo/1 1 https://twitter.com/dog_rates/status/687826841265172480/photo/1,https://twitter.com/dog_rates/status/687826841265172480/photo/1,https://twitter.com/dog_rates/status/687826841265172480/photo/1,https://twitter.com/dog_rates/status/687826841265172480/photo/1 1 https://twitter.com/dog_rates/status/808501579447930884/photo/1,https://twitter.com/dog_rates/status/808501579447930884/photo/1 1 https://twitter.com/dog_rates/status/825876512159186944/photo/1 1 https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1 1 https://twitter.com/dog_rates/status/854120357044912130/photo/1,https://twitter.com/dog_rates/status/854120357044912130/photo/1,https://twitter.com/dog_rates/status/854120357044912130/photo/1,https://twitter.com/dog_rates/status/854120357044912130/photo/1 1 https://twitter.com/dog_rates/status/666362758909284353/photo/1 1 https://twitter.com/dog_rates/status/831939777352105988/photo/1 1 https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1 1 https://twitter.com/dog_rates/status/676533798876651520/photo/1 1 https://twitter.com/dog_rates/status/821407182352777218/video/1 1 https://twitter.com/dog_rates/status/877736472329191424/photo/1,https://twitter.com/dog_rates/status/877736472329191424/photo/1 1 https://twitter.com/dog_rates/status/742528092657332225/photo/1,https://twitter.com/dog_rates/status/742528092657332225/photo/1 1 https://twitter.com/dog_rates/status/817171292965273600/photo/1 1 https://twitter.com/dog_rates/status/696713835009417216/photo/1 1 https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1 1 https://twitter.com/dog_rates/status/684195085588783105/photo/1 1 https://twitter.com/dog_rates/status/666055525042405380/photo/1 1 https://twitter.com/dog_rates/status/670823764196741120/photo/1 1 https://twitter.com/dog_rates/status/783821107061198850/photo/1,https://twitter.com/dog_rates/status/783821107061198850/photo/1 1 https://twitter.com/dog_rates/status/671159727754231808/photo/1 1 https://twitter.com/dog_rates/status/682750546109968385/photo/1 1 https://twitter.com/dog_rates/status/765222098633691136/photo/1,https://twitter.com/dog_rates/status/765222098633691136/photo/1 1 https://twitter.com/AaronChewning/status/857061112319234050/photo/1 1 https://twitter.com/dog_rates/status/818145370475810820/photo/1,https://twitter.com/dog_rates/status/818145370475810820/photo/1,https://twitter.com/dog_rates/status/818145370475810820/photo/1 1 https://twitter.com/dog_rates/status/829449946868879360/photo/1 1 https://twitter.com/dog_rates/status/677895101218201600/photo/1 1 https://twitter.com/dog_rates/status/707297311098011648/photo/1,https://twitter.com/dog_rates/status/707297311098011648/photo/1 1 https://twitter.com/dog_rates/status/728015554473250816/photo/1 1 https://twitter.com/dog_rates/status/676821958043033607/photo/1,https://twitter.com/dog_rates/status/676821958043033607/photo/1 1 https://twitter.com/dog_rates/status/666044226329800704/photo/1 1 https://twitter.com/dog_rates/status/690005060500217858/photo/1 1 https://twitter.com/dog_rates/status/666454714377183233/photo/1 1 https://twitter.com/dog_rates/status/823939628516474880/photo/1 1 https://twitter.com/dog_rates/status/689289219123089408/video/1 1 https://twitter.com/dog_rates/status/667192066997374976/photo/1 1 https://twitter.com/dog_rates/status/679503373272485890/photo/1 1 https://twitter.com/foxdeportes/status/725136065078521856 1 https://twitter.com/dog_rates/status/674394782723014656/photo/1 1 https://twitter.com/dog_rates/status/670804601705242624/photo/1 1 https://twitter.com/dog_rates/status/715342466308784130/photo/1,https://twitter.com/dog_rates/status/715342466308784130/photo/1 1 https://twitter.com/dog_rates/status/829861396166877184/photo/1 1 https://vine.co/v/inVtemLt9tE 1 https://twitter.com/dog_rates/status/775842724423557120/photo/1,https://twitter.com/dog_rates/status/775842724423557120/photo/1 1 https://twitter.com/dog_rates/status/674014384960745472/photo/1 1 https://twitter.com/dog_rates/status/671896809300709376/photo/1 1 https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1 1 https://twitter.com/dog_rates/status/670668383499735048/photo/1 1 https://twitter.com/dog_rates/status/673705679337693185/photo/1 1 https://twitter.com/dog_rates/status/832757312314028032/photo/1,https://twitter.com/dog_rates/status/832757312314028032/photo/1 1 https://twitter.com/dog_rates/status/729823566028484608/photo/1 1 https://twitter.com/dog_rates/status/777684233540206592/photo/1,https://twitter.com/dog_rates/status/777684233540206592/photo/1 1 https://twitter.com/dog_rates/status/833479644947025920/photo/1,https://twitter.com/dog_rates/status/833479644947025920/photo/1,https://twitter.com/dog_rates/status/833479644947025920/photo/1 1 https://twitter.com/dog_rates/status/771770456517009408/photo/1,https://twitter.com/dog_rates/status/771770456517009408/photo/1 1 https://twitter.com/dog_rates/status/677716515794329600/photo/1 1 https://twitter.com/dog_rates/status/742150209887731712/photo/1 1 https://twitter.com/dog_rates/status/747885874273214464/photo/1,https://twitter.com/dog_rates/status/747885874273214464/photo/1 1 https://twitter.com/dog_rates/status/687494652870668288/photo/1 1 https://twitter.com/dog_rates/status/749036806121881602/photo/1 1 https://twitter.com/dog_rates/status/685268753634967552/photo/1 1 https://twitter.com/dog_rates/status/676819651066732545/photo/1,https://twitter.com/dog_rates/status/676819651066732545/photo/1 1 https://twitter.com/dog_rates/status/734912297295085568/photo/1 1 https://twitter.com/dog_rates/status/666983947667116034/photo/1 1 https://twitter.com/dog_rates/status/669353438988365824/photo/1 1 https://twitter.com/dog_rates/status/834167344700198914/photo/1 1 https://twitter.com/dog_rates/status/791672322847637504/photo/1,https://twitter.com/dog_rates/status/791672322847637504/photo/1 1 https://twitter.com/dog_rates/status/678334497360859136/photo/1 1 https://twitter.com/dog_rates/status/788039637453406209/photo/1,https://twitter.com/dog_rates/status/788039637453406209/photo/1 1 https://twitter.com/dog_rates/status/678021115718029313/photo/1 1 https://twitter.com/dog_rates/status/672828477930868736/photo/1 1 https://twitter.com/dog_rates/status/870063196459192321/photo/1,https://twitter.com/dog_rates/status/870063196459192321/photo/1 1 https://twitter.com/dog_rates/status/803380650405482500/photo/1 1 https://twitter.com/dog_rates/status/666418789513326592/photo/1 1 https://twitter.com/dog_rates/status/666644823164719104/photo/1 1 https://twitter.com/dog_rates/status/836753516572119041/photo/1 1 https://twitter.com/dog_rates/status/673352124999274496/photo/1 1 https://twitter.com/dog_rates/status/720775346191278080/photo/1 1 https://twitter.com/dog_rates/status/733109485275860992/photo/1 1 https://twitter.com/dog_rates/status/682059653698686977/photo/1,https://twitter.com/dog_rates/status/682059653698686977/photo/1 1 https://twitter.com/dog_rates/status/690400367696297985/photo/1 1 https://twitter.com/dog_rates/status/780858289093574656/photo/1 1 https://twitter.com/dog_rates/status/709519240576036864/photo/1 1 https://twitter.com/dog_rates/status/870374049280663552/photo/1 1 https://twitter.com/dog_rates/status/670468609693655041/photo/1 1 https://twitter.com/dog_rates/status/688064179421470721/photo/1 1 https://twitter.com/dog_rates/status/673240798075449344/photo/1 1 https://twitter.com/dog_rates/status/699779630832685056/photo/1,https://twitter.com/dog_rates/status/699779630832685056/photo/1 1 https://twitter.com/dog_rates/status/678774928607469569/photo/1 1 https://twitter.com/dog_rates/status/735648611367784448/photo/1 1 https://twitter.com/dog_rates/status/801115127852503040/photo/1,https://twitter.com/dog_rates/status/801115127852503040/photo/1 1 https://twitter.com/dog_rates/status/736010884653420544/photo/1,https://twitter.com/dog_rates/status/736010884653420544/photo/1 1 https://twitter.com/dog_rates/status/700002074055016451/photo/1 1 https://twitter.com/dog_rates/status/736736130620620800/photo/1 1 https://twitter.com/dog_rates/status/666051853826850816/photo/1 1 https://twitter.com/dog_rates/status/699775878809702401/photo/1 1 https://twitter.com/dog_rates/status/860524505164394496/photo/1 1 https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1 1 https://twitter.com/dog_rates/status/758467244762497024/video/1 1 https://twitter.com/dog_rates/status/723912936180330496/photo/1 1 https://twitter.com/dog_rates/status/717421804990701568/photo/1,https://twitter.com/dog_rates/status/717421804990701568/photo/1 1 https://twitter.com/dog_rates/status/859851578198683649/photo/1,https://twitter.com/dog_rates/status/859851578198683649/photo/1,https://twitter.com/dog_rates/status/859851578198683649/photo/1,https://twitter.com/dog_rates/status/859851578198683649/photo/1 1 https://twitter.com/dog_rates/status/675517828909424640/photo/1 1 https://twitter.com/dog_rates/status/852226086759018497/video/1 1 https://twitter.com/dog_rates/status/667517642048163840/photo/1 1 https://twitter.com/dog_rates/status/669583744538451968/photo/1 1 https://twitter.com/dog_rates/status/750026558547456000/photo/1 1 https://twitter.com/dog_rates/status/692535307825213440/photo/1 1 https://twitter.com/dog_rates/status/813096984823349248/photo/1 1 https://twitter.com/dog_rates/status/695074328191332352/photo/1 1 https://twitter.com/dog_rates/status/669375718304980992/photo/1 1 https://twitter.com/dog_rates/status/676219687039057920/photo/1 1 https://twitter.com/dog_rates/status/884562892145688576/photo/1 1 https://twitter.com/dog_rates/status/700462010979500032/photo/1 1 https://twitter.com/dog_rates/status/676496375194980353/photo/1 1 https://twitter.com/dog_rates/status/675149409102012420/photo/1 1 https://vine.co/v/hYdLVKDpAFu 1 https://twitter.com/dog_rates/status/787717603741622272/photo/1,https://twitter.com/dog_rates/status/787717603741622272/photo/1,https://twitter.com/dog_rates/status/787717603741622272/photo/1,https://twitter.com/dog_rates/status/787717603741622272/photo/1 1 https://twitter.com/dog_rates/status/826115272272650244/photo/1 1 https://twitter.com/dog_rates/status/671166507850801152/photo/1 1 https://twitter.com/dog_rates/status/693109034023534592/video/1 1 https://twitter.com/dog_rates/status/821107785811234820/photo/1 1 https://twitter.com/dog_rates/status/667470559035432960/photo/1 1 https://twitter.com/dog_rates/status/673342308415348736/photo/1 1 https://twitter.com/dog_rates/status/672231046314901505/photo/1 1 https://twitter.com/dog_rates/status/684222868335505415/photo/1 1 https://twitter.com/dog_rates/status/759099523532779520/photo/1 1 https://twitter.com/dog_rates/status/684200372118904832/photo/1 1 https://twitter.com/dog_rates/status/887517139158093824/video/1 1 https://twitter.com/dog_rates/status/673688752737402881/photo/1 1 https://twitter.com/dog_rates/status/685943807276412928/video/1 1 https://twitter.com/dog_rates/status/682047327939461121/photo/1 1 https://vine.co/v/5WrjaYAMvMO 1 https://twitter.com/dog_rates/status/766693177336135680/photo/1 1 https://twitter.com/dog_rates/status/763183847194451968/photo/1 1 https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1 1 https://twitter.com/dog_rates/status/733460102733135873/photo/1 1 https://twitter.com/dog_rates/status/684460069371654144/photo/1 1 https://vine.co/v/inlmMHxtqDD 1 https://twitter.com/dog_rates/status/702684942141153280/photo/1 1 https://twitter.com/dog_rates/status/677334615166730240/photo/1,https://twitter.com/dog_rates/status/677334615166730240/photo/1 1 https://twitter.com/dog_rates/status/891689557279858688/photo/1 1 https://vine.co/v/iExiLXiiHvX 1 https://twitter.com/dog_rates/status/708711088997666817/photo/1,https://twitter.com/dog_rates/status/708711088997666817/photo/1 1 https://twitter.com/dog_rates/status/676606785097199616/photo/1 1 https://twitter.com/dog_rates/status/749774190421639168/photo/1 1 https://twitter.com/dog_rates/status/838476387338051585/photo/1,https://twitter.com/dog_rates/status/838476387338051585/photo/1,https://twitter.com/dog_rates/status/838476387338051585/photo/1 1 https://twitter.com/dog_rates/status/674739953134403584/photo/1 1 https://vine.co/v/ib2nTOEuuOI 1 https://twitter.com/dog_rates/status/667832474953625600/photo/1 1 https://twitter.com/dog_rates/status/810896069567610880/photo/1,https://twitter.com/dog_rates/status/810896069567610880/photo/1,https://twitter.com/dog_rates/status/810896069567610880/photo/1 1 https://vine.co/v/iKIwAzEatd6 1 https://twitter.com/dog_rates/status/675006312288268288/photo/1 1 https://twitter.com/dog_rates/status/835574547218894849/photo/1,https://twitter.com/dog_rates/status/835574547218894849/photo/1 1 https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1 1 https://twitter.com/dog_rates/status/673355879178194945/photo/1,https://twitter.com/dog_rates/status/673355879178194945/photo/1,https://twitter.com/dog_rates/status/673355879178194945/photo/1 1 https://twitter.com/dog_rates/status/695816827381944320/photo/1 1 https://twitter.com/dog_rates/status/671163268581498880/photo/1 1 https://twitter.com/dog_rates/status/741438259667034112/photo/1 1 https://twitter.com/dog_rates/status/675489971617296384/photo/1 1 https://twitter.com/dog_rates/status/670442337873600512/photo/1 1 https://twitter.com/dog_rates/status/803638050916102144/video/1 1 https://twitter.com/dog_rates/status/675362609739206656/photo/1 1 https://twitter.com/dog_rates/status/855459453768019968/photo/1,https://twitter.com/dog_rates/status/855459453768019968/photo/1 1 https://twitter.com/dog_rates/status/762471784394268675/video/1 1 https://twitter.com/dog_rates/status/675781562965868544/photo/1 1 https://twitter.com/dog_rates/status/673700254269775872/photo/1 1 https://twitter.com/dog_rates/status/753294487569522689/photo/1 1 https://twitter.com/dog_rates/status/703407252292673536/photo/1 1 https://twitter.com/dog_rates/status/670797304698376195/photo/1 1 https://twitter.com/dog_rates/status/671547767500775424/photo/1,https://twitter.com/dog_rates/status/671547767500775424/photo/1 1 https://twitter.com/dog_rates/status/668113020489474048/photo/1 1 https://twitter.com/dog_rates/status/708119489313951744/photo/1 1 https://twitter.com/dog_rates/status/737826014890496000/photo/1,https://twitter.com/dog_rates/status/737826014890496000/photo/1 1 https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1 1 https://twitter.com/dog_rates/status/751456908746354688/video/1 1 https://twitter.com/dog_rates/status/670420569653809152/photo/1 1 https://vine.co/v/h5aDaFthX6O 1 https://twitter.com/dog_rates/status/868880397819494401/photo/1 1 https://twitter.com/dog_rates/status/770787852854652928/photo/1 1 https://twitter.com/dog_rates/status/678389028614488064/photo/1 1 https://twitter.com/dog_rates/status/692187005137076224/photo/1,https://twitter.com/dog_rates/status/692187005137076224/photo/1,https://twitter.com/dog_rates/status/692187005137076224/photo/1 1 https://twitter.com/dog_rates/status/709225125749587968/photo/1 1 https://twitter.com/dog_rates/status/682662431982772225/photo/1 1 https://twitter.com/dog_rates/status/783695101801398276/photo/1,https://twitter.com/dog_rates/status/783695101801398276/photo/1,https://twitter.com/dog_rates/status/783695101801398276/photo/1 1 https://twitter.com/dog_rates/status/668466899341221888/photo/1 1 https://twitter.com/dog_rates/status/674436901579923456/photo/1 1 https://twitter.com/dog_rates/status/670069087419133954/photo/1 1 https://twitter.com/markhalperin/status/855656431005061120 1 https://twitter.com/dog_rates/status/872820683541237760/photo/1,https://twitter.com/dog_rates/status/872820683541237760/photo/1,https://twitter.com/dog_rates/status/872820683541237760/photo/1,https://twitter.com/dog_rates/status/872820683541237760/photo/1 1 https://twitter.com/dog_rates/status/666781792255496192/photo/1 1 https://twitter.com/dog_rates/status/780601303617732608/photo/1 1 https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1 1 https://twitter.com/dog_rates/status/677530072887205888/photo/1 1 https://vine.co/v/iDrOvVqq0A6 1 https://twitter.com/dog_rates/status/686003207160610816/photo/1 1 https://twitter.com/dog_rates/status/680145970311643136/photo/1,https://twitter.com/dog_rates/status/680145970311643136/photo/1,https://twitter.com/dog_rates/status/680145970311643136/photo/1 1 https://twitter.com/dog_rates/status/667495797102141441/photo/1 1 https://twitter.com/dog_rates/status/809448704142938112/photo/1 1 https://twitter.com/dog_rates/status/778383385161035776/photo/1 1 https://twitter.com/dog_rates/status/708738143638450176/photo/1 1 https://twitter.com/dog_rates/status/790277117346975746/photo/1,https://twitter.com/dog_rates/status/790277117346975746/photo/1 1 https://twitter.com/dog_rates/status/708845821941387268/photo/1,https://twitter.com/dog_rates/status/708845821941387268/photo/1 1 https://twitter.com/dog_rates/status/831315979191906304/photo/1,https://twitter.com/dog_rates/status/831315979191906304/photo/1,https://twitter.com/dog_rates/status/831315979191906304/photo/1,https://twitter.com/dog_rates/status/831315979191906304/photo/1 1 https://twitter.com/dog_rates/status/707776935007539200/photo/1 1 https://twitter.com/dog_rates/status/666063827256086533/photo/1 1 https://twitter.com/csncapitals/status/846088479142531073 1 https://twitter.com/dog_rates/status/670717338665226240/photo/1 1 https://vine.co/v/irlDujgwOjd 1 https://twitter.com/dog_rates/status/717009362452090881/photo/1 1 https://twitter.com/dog_rates/status/715200624753819648/photo/1 1 https://twitter.com/dog_rates/status/748568946752774144/video/1 1 https://twitter.com/dog_rates/status/673887867907739649/photo/1,https://twitter.com/dog_rates/status/673887867907739649/photo/1 1 https://twitter.com/dog_rates/status/670434127938719744/photo/1 1 https://twitter.com/dog_rates/status/875021211251597312/photo/1,https://twitter.com/dog_rates/status/875021211251597312/photo/1 1 https://twitter.com/dog_rates/status/837366284874571778/photo/1 1 https://twitter.com/dog_rates/status/666396247373291520/photo/1 1 https://twitter.com/dog_rates/status/682389078323662849/photo/1 1 https://twitter.com/dog_rates/status/852553447878664193/photo/1,https://twitter.com/dog_rates/status/852553447878664193/photo/1 1 https://twitter.com/dog_rates/status/889880896479866881/photo/1 1 https://twitter.com/yahoonews/status/771905568600719360 1 https://twitter.com/dog_rates/status/693629975228977152/photo/1,https://twitter.com/dog_rates/status/693629975228977152/photo/1 1 https://twitter.com/dog_rates/status/856543823941562368/photo/1 1 https://twitter.com/dog_rates/status/668902994700836864/photo/1 1 https://twitter.com/dog_rates/status/671855973984772097/photo/1 1 https://twitter.com/dog_rates/status/666102155909144576/photo/1 1 https://twitter.com/dog_rates/status/733828123016450049/photo/1,https://twitter.com/dog_rates/status/733828123016450049/photo/1 1 https://twitter.com/dog_rates/status/672095186491711488/photo/1 1 https://twitter.com/dog_rates/status/670303360680108032/photo/1 1 https://twitter.com/dog_rates/status/872620804844003328/photo/1 1 https://twitter.com/dog_rates/status/771770456517009408/photo/1 1 https://twitter.com/brianstack153/status/796796054100471809 1 https://twitter.com/dog_rates/status/666268910803644416/photo/1 1 https://twitter.com/dog_rates/status/676215927814406144/photo/1 1 https://twitter.com/dog_rates/status/881906580714921986/photo/1 1 https://twitter.com/dog_rates/status/673636718965334016/photo/1 1 https://twitter.com/dog_rates/status/834086379323871233/photo/1 1 https://vine.co/v/iXidJXBJ3P9 1 https://twitter.com/dog_rates/status/672898206762672129/photo/1 1 https://vine.co/v/iQm3JAXuFmv 1 https://twitter.com/dog_rates/status/671874878652489728/photo/1,https://twitter.com/dog_rates/status/671874878652489728/photo/1 1 https://vine.co/v/iMvubwT260D 1 https://twitter.com/dog_rates/status/848690551926992896/photo/1 1 https://twitter.com/dog_rates/status/676470639084101634/photo/1 1 https://twitter.com/dog_rates/status/673317986296586240/photo/1,https://twitter.com/dog_rates/status/673317986296586240/photo/1 1 https://twitter.com/dog_rates/status/799422933579902976/photo/1 1 https://twitter.com/dog_rates/status/676089483918516224/photo/1 1 https://twitter.com/dog_rates/status/674670581682434048/photo/1 1 https://twitter.com/dog_rates/status/667393430834667520/photo/1 1 https://twitter.com/dog_rates/status/680940246314430465/photo/1 1 https://twitter.com/dog_rates/status/705475953783398401/photo/1,https://twitter.com/dog_rates/status/705475953783398401/photo/1 1 https://twitter.com/dog_rates/status/676191832485810177/photo/1,https://twitter.com/dog_rates/status/676191832485810177/photo/1,https://twitter.com/dog_rates/status/676191832485810177/photo/1 1 https://twitter.com/dog_rates/status/823322678127919110/photo/1,https://twitter.com/dog_rates/status/823322678127919110/photo/1 1 https://twitter.com/dog_rates/status/874296783580663808/photo/1 1 https://twitter.com/dog_rates/status/882992080364220416/photo/1,https://twitter.com/dog_rates/status/882992080364220416/photo/1 1 https://twitter.com/dog_rates/status/693486665285931008/video/1 1 https://twitter.com/dog_rates/status/802323869084381190/photo/1,https://twitter.com/dog_rates/status/802323869084381190/photo/1,https://twitter.com/dog_rates/status/802323869084381190/photo/1,https://twitter.com/dog_rates/status/802323869084381190/photo/1 1 https://twitter.com/dog_rates/status/871762521631449091/photo/1,https://twitter.com/dog_rates/status/871762521631449091/photo/1,https://twitter.com/dog_rates/status/871762521631449091/photo/1 1 https://twitter.com/dog_rates/status/790581949425475584/photo/1,https://twitter.com/dog_rates/status/790581949425475584/photo/1 1 https://twitter.com/drboondoc/status/874413398133547008 1 https://twitter.com/dog_rates/status/698549713696649216/photo/1 1 https://twitter.com/dog_rates/status/776813020089548800/photo/1,https://twitter.com/dog_rates/status/776813020089548800/photo/1 1 https://twitter.com/dog_rates/status/680085611152338944/photo/1,https://twitter.com/dog_rates/status/680085611152338944/photo/1,https://twitter.com/dog_rates/status/680085611152338944/photo/1 1 https://twitter.com/dog_rates/status/688547210804498433/photo/1 1 https://twitter.com/dog_rates/status/672609152938721280/photo/1 1 https://twitter.com/dog_rates/status/668542336805281792/photo/1 1 https://twitter.com/dog_rates/status/669006782128353280/photo/1 1 https://twitter.com/dog_rates/status/666082916733198337/photo/1 1 https://twitter.com/dog_rates/status/671115716440031232/photo/1 1 https://twitter.com/dog_rates/status/848212111729840128/photo/1 1 https://twitter.com/dog_rates/status/750086836815486976/photo/1 1 https://twitter.com/dog_rates/status/827199976799354881/photo/1,https://twitter.com/dog_rates/status/827199976799354881/photo/1,https://twitter.com/dog_rates/status/827199976799354881/photo/1,https://twitter.com/dog_rates/status/827199976799354881/photo/1 1 https://twitter.com/dog_rates/status/678764513869611008/photo/1 1 https://twitter.com/dog_rates/status/666817836334096384/photo/1 1 https://twitter.com/dog_rates/status/709566166965075968/photo/1 1 https://twitter.com/dog_rates/status/689835978131935233/photo/1 1 https://twitter.com/dog_rates/status/841439858740625411/photo/1,https://twitter.com/dog_rates/status/841439858740625411/photo/1,https://twitter.com/dog_rates/status/841439858740625411/photo/1,https://twitter.com/dog_rates/status/841439858740625411/photo/1 1 https://twitter.com/dog_rates/status/843604394117681152/photo/1 1 https://twitter.com/dog_rates/status/711008018775851008/photo/1 1 https://twitter.com/dog_rates/status/730211855403241472/photo/1 1 https://twitter.com/dog_rates/status/667861340749471744/photo/1 1 https://vine.co/v/OTTVAKw6YlW 1 https://twitter.com/dog_rates/status/675522403582218240/photo/1 1 https://twitter.com/dog_rates/status/685547936038666240/photo/1,https://twitter.com/dog_rates/status/685547936038666240/photo/1 1 https://twitter.com/dog_rates/status/859924526012018688/photo/1 1 https://twitter.com/dog_rates/status/797236660651966464/photo/1,https://twitter.com/dog_rates/status/797236660651966464/photo/1 1 https://twitter.com/dog_rates/status/668955713004314625/photo/1 1 https://twitter.com/dog_rates/status/822872901745569793/photo/1 1 https://twitter.com/dog_rates/status/667200525029539841/photo/1 1 https://twitter.com/dog_rates/status/770293558247038976/photo/1 1 https://twitter.com/dog_rates/status/676949632774234114/photo/1 1 https://twitter.com/dog_rates/status/885528943205470208/photo/1 1 https://twitter.com/dog_rates/status/669327207240699904/photo/1 1 https://twitter.com/rolltidered/status/832434358292209665/photo/1 1 https://twitter.com/dog_rates/status/673343217010679808/photo/1 1 https://twitter.com/dog_rates/status/836380477523124226/photo/1 1 https://twitter.com/dog_rates/status/689599056876867584/photo/1 1 https://twitter.com/dog_rates/status/704847917308362754/photo/1 1 https://twitter.com/dog_rates/status/886258384151887873/photo/1 1 https://twitter.com/dog_rates/status/686683045143953408/photo/1 1 https://twitter.com/dog_rates/status/682788441537560576/photo/1 1 https://twitter.com/dog_rates/status/667177989038297088/photo/1 1 https://twitter.com/dog_rates/status/802239329049477120/photo/1,https://twitter.com/dog_rates/status/802239329049477120/photo/1 1 https://twitter.com/dog_rates/status/760290219849637889/video/1 1 https://twitter.com/dog_rates/status/707038192327901184/photo/1,https://twitter.com/dog_rates/status/707038192327901184/photo/1 1 https://twitter.com/dog_rates/status/674019345211760640/photo/1 1 https://twitter.com/dog_rates/status/770772759874076672/photo/1 1 https://twitter.com/dog_rates/status/800018252395122689/video/1 1 https://twitter.com/dog_rates/status/666073100786774016/photo/1 1 https://twitter.com/dog_rates/status/810284430598270976/photo/1,https://twitter.com/dog_rates/status/810284430598270976/photo/1 1 https://twitter.com/dog_rates/status/675372240448454658/photo/1 1 https://twitter.com/dog_rates/status/747204161125646336/photo/1,https://twitter.com/dog_rates/status/747204161125646336/photo/1 1 https://twitter.com/dog_rates/status/670780561024270336/photo/1 1 https://twitter.com/dog_rates/status/792050063153438720/photo/1,https://twitter.com/dog_rates/status/792050063153438720/photo/1 1 https://twitter.com/dog_rates/status/757725642876129280/photo/1,https://twitter.com/dog_rates/status/757725642876129280/photo/1 1 https://twitter.com/dog_rates/status/684914660081053696/photo/1 1 https://twitter.com/dog_rates/status/672482722825261057/photo/1 1 https://twitter.com/dog_rates/status/675870721063669760/photo/1 1 https://twitter.com/dog_rates/status/680176173301628928/photo/1 1 https://twitter.com/dog_rates/status/871879754684805121/photo/1,https://twitter.com/dog_rates/status/871879754684805121/photo/1 1 https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1 1 https://twitter.com/dog_rates/status/771102124360998913/photo/1 1 https://vine.co/v/OEppMFbejFz 1 https://twitter.com/dog_rates/status/771500966810099713/photo/1 1 https://twitter.com/stevekopack/status/834086676934836224 1 https://twitter.com/dog_rates/status/700505138482569216/photo/1,https://twitter.com/dog_rates/status/700505138482569216/photo/1,https://twitter.com/dog_rates/status/700505138482569216/photo/1,https://twitter.com/dog_rates/status/700505138482569216/photo/1 1 https://twitter.com/dog_rates/status/673906403526995968/photo/1 1 https://twitter.com/dog_rates/status/707387676719185920/photo/1 1 https://twitter.com/dog_rates/status/680070545539371008/photo/1 1 https://twitter.com/dog_rates/status/688385280030670848/photo/1,https://twitter.com/dog_rates/status/688385280030670848/photo/1,https://twitter.com/dog_rates/status/688385280030670848/photo/1,https://twitter.com/dog_rates/status/688385280030670848/photo/1 1 https://twitter.com/dog_rates/status/821765923262631936/photo/1 1 https://twitter.com/dog_rates/status/667405339315146752/photo/1 1 https://twitter.com/dog_rates/status/780543529827336192/photo/1 1 https://twitter.com/dog_rates/status/720415127506415616/photo/1,https://twitter.com/dog_rates/status/720415127506415616/photo/1,https://twitter.com/dog_rates/status/720415127506415616/photo/1 1 https://twitter.com/dog_rates/status/734776360183431168/photo/1 1 https://twitter.com/dog_rates/status/813051746834595840/photo/1 1 https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1 1 https://twitter.com/dog_rates/status/709207347839836162/photo/1 1 https://twitter.com/dog_rates/status/667937095915278337/photo/1 1 https://twitter.com/dog_rates/status/669567591774625800/photo/1 1 https://twitter.com/dog_rates/status/744995568523612160/photo/1,https://twitter.com/dog_rates/status/744995568523612160/photo/1 1 https://twitter.com/dog_rates/status/784431430411685888/photo/1 1 https://twitter.com/dog_rates/status/667782464991965184/photo/1 1 https://vine.co/v/i5ETazP5hrm 1 https://twitter.com/dog_rates/status/751132876104687617/photo/1,https://twitter.com/dog_rates/status/751132876104687617/photo/1 1 https://twitter.com/dog_rates/status/721503162398597120/photo/1,https://twitter.com/dog_rates/status/721503162398597120/photo/1,https://twitter.com/dog_rates/status/721503162398597120/photo/1,https://twitter.com/dog_rates/status/721503162398597120/photo/1 1 https://twitter.com/dog_rates/status/712668654853337088/photo/1,https://twitter.com/dog_rates/status/712668654853337088/photo/1,https://twitter.com/dog_rates/status/712668654853337088/photo/1 1 https://twitter.com/dog_rates/status/742465774154047488/photo/1,https://twitter.com/dog_rates/status/742465774154047488/photo/1 1 https://twitter.com/dog_rates/status/674255168825880576/photo/1 1 https://twitter.com/kaijohnson_19/status/883965650754039809 1 https://twitter.com/dog_rates/status/813187593374461952/photo/1 1 https://twitter.com/dog_rates/status/703769065844768768/photo/1,https://twitter.com/dog_rates/status/703769065844768768/photo/1 1 https://twitter.com/dog_rates/status/754856583969079297/photo/1,https://twitter.com/dog_rates/status/754856583969079297/photo/1,https://twitter.com/dog_rates/status/754856583969079297/photo/1 1 https://twitter.com/dog_rates/status/739485634323156992/photo/1,https://twitter.com/dog_rates/status/739485634323156992/photo/1 1 https://twitter.com/dog_rates/status/885167619883638784/photo/1,https://twitter.com/dog_rates/status/885167619883638784/photo/1,https://twitter.com/dog_rates/status/885167619883638784/photo/1,https://twitter.com/dog_rates/status/885167619883638784/photo/1 1 https://twitter.com/dog_rates/status/738402415918125056/photo/1 1 https://twitter.com/dog_rates/status/706291001778950144/photo/1,https://twitter.com/dog_rates/status/706291001778950144/photo/1 1 https://twitter.com/dog_rates/status/846153765933735936/photo/1,https://twitter.com/dog_rates/status/846153765933735936/photo/1 1 https://twitter.com/dog_rates/status/768855141948723200/photo/1 1 https://twitter.com/dog_rates/status/674447403907457024/photo/1 1 https://twitter.com/dog_rates/status/812781120811126785/photo/1,https://twitter.com/dog_rates/status/812781120811126785/photo/1,https://twitter.com/dog_rates/status/812781120811126785/photo/1 1 https://twitter.com/dog_rates/status/757596066325864448/photo/1 1 https://twitter.com/dog_rates/status/675822767435051008/photo/1 1 https://twitter.com/dog_rates/status/707377100785885184/photo/1,https://twitter.com/dog_rates/status/707377100785885184/photo/1 1 https://twitter.com/dog_rates/status/671533943490011136/photo/1 1 https://twitter.com/dog_rates/status/689517482558820352/photo/1,https://twitter.com/dog_rates/status/689517482558820352/photo/1,https://twitter.com/dog_rates/status/689517482558820352/photo/1 1 https://twitter.com/dog_rates/status/724983749226668032/photo/1 1 https://twitter.com/dog_rates/status/670783437142401025/photo/1 1 https://twitter.com/dog_rates/status/745057283344719872/photo/1,https://twitter.com/dog_rates/status/745057283344719872/photo/1 1 https://twitter.com/dog_rates/status/678643457146150913/photo/1 1 https://twitter.com/dog_rates/status/706644897839910912/video/1 1 https://twitter.com/dog_rates/status/707969809498152960/photo/1 1 https://twitter.com/dog_rates/status/669203728096960512/photo/1 1 https://twitter.com/dog_rates/status/764857477905154048/photo/1 1 https://twitter.com/dog_rates/status/751937170840121344/photo/1 1 https://twitter.com/dog_rates/status/708356463048204288/photo/1,https://twitter.com/dog_rates/status/708356463048204288/photo/1 1 https://twitter.com/dog_rates/status/675354435921575936/video/1 1 https://twitter.com/dog_rates/status/806542213899489280/photo/1 1 https://twitter.com/dog_rates/status/700518061187723268/photo/1 1 https://twitter.com/dog_rates/status/867421006826221569/photo/1 1 https://twitter.com/dog_rates/status/667773195014021121/photo/1 1 https://vine.co/v/ibvnzrauFuV 1 https://twitter.com/dog_rates/status/730196704625098752/photo/1 1 https://twitter.com/dog_rates/status/892177421306343426/photo/1 1 https://twitter.com/dog_rates/status/805487436403003392/photo/1,https://twitter.com/dog_rates/status/805487436403003392/photo/1,https://twitter.com/dog_rates/status/805487436403003392/photo/1,https://twitter.com/dog_rates/status/805487436403003392/photo/1 1 http://us.blastingnews.com/news/2017/02/jfk-announces-its-first-ever-ark-oasis-animal-terminal-001480161.html?sbdht=_pM1QUzk3wsdTxcmMoRPV7FWYYlsNKcFRcYSY7OmeHnOXA4NtUM6PLQ2_ 1 https://twitter.com/dog_rates/status/742161199639494656/photo/1 1 https://twitter.com/dog_rates/status/675820929667219457/photo/1 1 https://twitter.com/dog_rates/status/693280720173801472/photo/1 1 https://twitter.com/dog_rates/status/667885044254572545/photo/1 1 https://twitter.com/dog_rates/status/757400162377592832/photo/1,https://twitter.com/dog_rates/status/757400162377592832/photo/1,https://twitter.com/dog_rates/status/757400162377592832/photo/1 1 https://twitter.com/dog_rates/status/674318007229923329/photo/1 1 https://twitter.com/dog_rates/status/679736210798047232/photo/1 1 https://twitter.com/dog_rates/status/747933425676525569/photo/1,https://twitter.com/dog_rates/status/747933425676525569/photo/1,https://twitter.com/dog_rates/status/747933425676525569/photo/1 1 https://twitter.com/dog_rates/status/690735892932222976/photo/1,https://twitter.com/dog_rates/status/690735892932222976/photo/1 1 https://vine.co/v/5rgu2Law2ut 1 https://twitter.com/dog_rates/status/752519690950500352/photo/1,https://twitter.com/dog_rates/status/752519690950500352/photo/1,https://twitter.com/dog_rates/status/752519690950500352/photo/1 1 https://twitter.com/dog_rates/status/680801747103793152/photo/1 1 https://twitter.com/dog_rates/status/756303284449767430/photo/1 1 https://twitter.com/dog_rates/status/831670449226514432/photo/1 1 https://twitter.com/dog_rates/status/717790033953034240/photo/1 1 https://twitter.com/dog_rates/status/668643542311546881/photo/1 1 https://twitter.com/dog_rates/status/879050749262655488/photo/1 1 https://twitter.com/dog_rates/status/701601587219795968/photo/1 1 https://twitter.com/dog_rates/status/841314665196081154/video/1 1 https://twitter.com/dog_rates/status/674042553264685056/photo/1 1 https://twitter.com/dog_rates/status/688519176466644993/photo/1 1 https://twitter.com/telegraph/status/832268302944579584 1 https://twitter.com/dog_rates/status/862722525377298433/photo/1 1 https://twitter.com/dog_rates/status/667878741721415682/photo/1 1 https://twitter.com/dog_rates/status/813142292504645637/photo/1,https://twitter.com/dog_rates/status/813142292504645637/photo/1,https://twitter.com/dog_rates/status/813142292504645637/photo/1 1 https://twitter.com/dog_rates/status/730924654643314689/photo/1 1 https://twitter.com/dog_rates/status/707610948723478529/photo/1 1 https://twitter.com/dog_rates/status/859607811541651456/photo/1 1 https://twitter.com/dog_rates/status/700062718104104960/photo/1 1 https://twitter.com/dog_rates/status/718234618122661888/photo/1 1 https://twitter.com/dog_rates/status/687096057537363968/photo/1 1 https://twitter.com/dog_rates/status/704113298707505153/photo/1,https://twitter.com/dog_rates/status/704113298707505153/photo/1 1 https://twitter.com/nbcnews/status/866458718883467265 1 https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1 1 https://twitter.com/dog_rates/status/824297048279236611/photo/1,https://twitter.com/dog_rates/status/824297048279236611/photo/1 1 https://twitter.com/dog_rates/status/743895849529389061/photo/1 1 https://twitter.com/dog_rates/status/739844404073074688/photo/1 1 https://vine.co/v/5wPT1aBxPQZ 1 https://twitter.com/dog_rates/status/854010172552949760/photo/1,https://twitter.com/dog_rates/status/854010172552949760/photo/1 1 https://twitter.com/dog_rates/status/875144289856114688/video/1 1 https://twitter.com/dog_rates/status/859074603037188101/photo/1 1 https://twitter.com/dog_rates/status/736365877722001409/photo/1,https://twitter.com/dog_rates/status/736365877722001409/photo/1,https://twitter.com/dog_rates/status/736365877722001409/photo/1,https://twitter.com/dog_rates/status/736365877722001409/photo/1 1 https://twitter.com/dog_rates/status/669680153564442624/photo/1 1 https://twitter.com/dog_rates/status/709409458133323776/photo/1 1 https://twitter.com/dog_rates/status/718939241951195136/photo/1 1 https://twitter.com/dog_rates/status/747600769478692864/photo/1,https://twitter.com/dog_rates/status/747600769478692864/photo/1 1 https://twitter.com/dog_rates/status/690938899477221376/photo/1 1 https://twitter.com/dog_rates/status/751251247299190784/video/1 1 https://twitter.com/dog_rates/status/830956169170665475/video/1 1 https://vine.co/v/iejBWerY9X2 1 https://twitter.com/dog_rates/status/790987426131050500/photo/1 1 https://twitter.com/dog_rates/status/884876753390489601/photo/1,https://twitter.com/dog_rates/status/884876753390489601/photo/1,https://twitter.com/dog_rates/status/884876753390489601/photo/1,https://twitter.com/dog_rates/status/884876753390489601/photo/1 1 https://twitter.com/dog_rates/status/706681918348251136/photo/1,https://twitter.com/dog_rates/status/706681918348251136/photo/1,https://twitter.com/dog_rates/status/706681918348251136/photo/1 1 https://twitter.com/dog_rates/status/698355670425473025/photo/1 1 https://twitter.com/dog_rates/status/727175381690781696/photo/1,https://twitter.com/dog_rates/status/727175381690781696/photo/1 1 https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1 1 https://twitter.com/dog_rates/status/775085132600442880/photo/1,https://twitter.com/dog_rates/status/775085132600442880/photo/1 1 https://twitter.com/dog_rates/status/756939218950160384/photo/1 1 https://twitter.com/dog_rates/status/678740035362037760/photo/1 1 https://twitter.com/dog_rates/status/708149363256774660/photo/1 1 https://twitter.com/dog_rates/status/670449342516494336/photo/1 1 https://twitter.com/dog_rates/status/694352839993344000/photo/1,https://twitter.com/dog_rates/status/694352839993344000/photo/1,https://twitter.com/dog_rates/status/694352839993344000/photo/1,https://twitter.com/dog_rates/status/694352839993344000/photo/1 1 https://twitter.com/dog_rates/status/682638830361513985/photo/1,https://twitter.com/dog_rates/status/682638830361513985/photo/1,https://twitter.com/dog_rates/status/682638830361513985/photo/1,https://twitter.com/dog_rates/status/682638830361513985/photo/1 1 https://vine.co/v/hQJbaj1VpIz 1 https://twitter.com/dog_rates/status/684122891630342144/photo/1 1 https://vine.co/v/i5n2irFUYWv 1 https://twitter.com/dog_rates/status/668655139528511488/photo/1 1 https://twitter.com/dog_rates/status/735991953473572864/photo/1,https://twitter.com/dog_rates/status/735991953473572864/photo/1,https://twitter.com/dog_rates/status/735991953473572864/photo/1 1 https://twitter.com/dog_rates/status/790946055508652032/photo/1,https://twitter.com/dog_rates/status/790946055508652032/photo/1 1 https://twitter.com/dog_rates/status/706538006853918722/photo/1 1 https://twitter.com/dog_rates/status/682259524040966145/photo/1 1 https://twitter.com/dog_rates/status/843856843873095681/photo/1 1 https://twitter.com/dog_rates/status/675483430902214656/photo/1 1 https://twitter.com/dog_rates/status/828376505180889089/photo/1 1 https://vine.co/v/5FwUWjYaW0Y 1 https://twitter.com/dog_rates/status/679132435750195208/photo/1 1 https://twitter.com/dog_rates/status/726224900189511680/photo/1 1 https://twitter.com/dog_rates/status/729113531270991872/photo/1,https://twitter.com/dog_rates/status/729113531270991872/photo/1 1 https://vine.co/v/iJvUqWQ166L 1 https://twitter.com/dog_rates/status/670421925039075328/photo/1 1 https://twitter.com/dog_rates/status/761976711479193600/photo/1,https://twitter.com/dog_rates/status/761976711479193600/photo/1,https://twitter.com/dog_rates/status/761976711479193600/photo/1,https://twitter.com/dog_rates/status/761976711479193600/photo/1 1 https://twitter.com/dog_rates/status/692894228850999298/photo/1 1 https://twitter.com/dog_rates/status/672488522314567680/photo/1 1 https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1 1 https://twitter.com/dog_rates/status/790946055508652032/photo/1 1 https://twitter.com/dog_rates/status/813910438903693312/photo/1 1 https://twitter.com/dog_rates/status/668852170888998912/photo/1 1 https://twitter.com/dog_rates/status/761745352076779520/photo/1 1 https://twitter.com/dog_rates/status/668992363537309700/photo/1 1 https://twitter.com/dog_rates/status/685973236358713344/photo/1 1 https://twitter.com/dog_rates/status/772102971039580160/photo/1 1 https://twitter.com/dog_rates/status/669683899023405056/photo/1 1 https://twitter.com/dog_rates/status/669571471778410496/photo/1 1 https://twitter.com/dog_rates/status/672975131468300288/photo/1 1 https://twitter.com/dog_rates/status/673662677122719744/photo/1 1 https://twitter.com/dog_rates/status/814638523311648768/photo/1,https://twitter.com/dog_rates/status/814638523311648768/photo/1,https://twitter.com/dog_rates/status/814638523311648768/photo/1 1 https://twitter.com/dog_rates/status/691416866452082688/photo/1,https://twitter.com/dog_rates/status/691416866452082688/photo/1 1 https://twitter.com/dog_rates/status/679862121895714818/photo/1 1 https://twitter.com/dog_rates/status/692828166163931137/photo/1 1 https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1 1 https://twitter.com/dog_rates/status/682429480204398592/photo/1 1 https://twitter.com/dog_rates/status/789986466051088384/photo/1 1 https://twitter.com/dog_rates/status/666430724426358785/photo/1 1 https://twitter.com/dog_rates/status/799297110730567681/photo/1,https://twitter.com/dog_rates/status/799297110730567681/photo/1 1 https://twitter.com/dog_rates/status/714982300363173890/photo/1 1 https://twitter.com/dog_rates/status/820078625395449857/photo/1,https://twitter.com/dog_rates/status/820078625395449857/photo/1,https://twitter.com/dog_rates/status/820078625395449857/photo/1 1 https://twitter.com/dog_rates/status/671561002136281088/photo/1 1 https://twitter.com/dog_rates/status/666049248165822465/photo/1 1 https://twitter.com/dog_rates/status/667524857454854144/photo/1 1 https://twitter.com/dog_rates/status/747219827526344708/photo/1,https://twitter.com/dog_rates/status/747219827526344708/photo/1 1 https://twitter.com/dog_rates/status/710658690886586372/photo/1 1 https://twitter.com/dog_rates/status/668507509523615744/photo/1 1 https://twitter.com/dog_rates/status/800513324630806528/photo/1 1 https://twitter.com/dog_rates/status/722974582966214656/photo/1 1 https://twitter.com/dog_rates/status/680970795137544192/photo/1 1 https://twitter.com/dog_rates/status/728409960103686147/photo/1 1 https://twitter.com/dog_rates/status/672256522047614977/photo/1 1 https://twitter.com/dog_rates/status/668620235289837568/photo/1 1 https://twitter.com/dog_rates/status/691321916024623104/photo/1 1 https://twitter.com/dog_rates/status/776113305656188928/photo/1 1 https://twitter.com/dog_rates/status/863907417377173506/photo/1,https://twitter.com/dog_rates/status/863907417377173506/photo/1 1 https://twitter.com/dog_rates/status/675845657354215424/photo/1 1 https://twitter.com/dog_rates/status/872486979161796608/photo/1 1 https://twitter.com/dog_rates/status/684241637099323392/photo/1,https://twitter.com/dog_rates/status/684241637099323392/photo/1,https://twitter.com/dog_rates/status/684241637099323392/photo/1 1 https://twitter.com/dog_rates/status/724004602748780546/photo/1,https://twitter.com/dog_rates/status/724004602748780546/photo/1,https://twitter.com/dog_rates/status/724004602748780546/photo/1 1 https://twitter.com/dog_rates/status/785264754247995392/photo/1 1 https://twitter.com/dog_rates/status/782722598790725632/photo/1 1 https://twitter.com/dog_rates/status/677565715327688705/photo/1 1 https://twitter.com/dog_rates/status/668142349051129856/photo/1 1 https://twitter.com/dog_rates/status/840696689258311684/photo/1 1 https://twitter.com/SchafeBacon2016/status/836648149003485187/photo/1 1 https://twitter.com/dog_rates/status/718460005985447936/photo/1 1 https://twitter.com/dog_rates/status/692158366030913536/photo/1 1 https://twitter.com/dog_rates/status/727644517743104000/photo/1,https://twitter.com/dog_rates/status/727644517743104000/photo/1 1 https://twitter.com/dog_rates/status/816336735214911488/photo/1 1 https://twitter.com/dog_rates/status/808001312164028416/photo/1,https://twitter.com/dog_rates/status/808001312164028416/photo/1 1 https://twitter.com/dog_rates/status/794205286408003585/photo/1,https://twitter.com/dog_rates/status/794205286408003585/photo/1,https://twitter.com/dog_rates/status/794205286408003585/photo/1 1 https://twitter.com/dog_rates/status/750132105863102464/photo/1 1 https://twitter.com/dog_rates/status/675111688094527488/photo/1 1 https://twitter.com/dog_rates/status/737310737551491075/video/1 1 https://twitter.com/dog_rates/status/865359393868664832/photo/1,https://twitter.com/dog_rates/status/865359393868664832/photo/1 1 https://twitter.com/dog_rates/status/727314416056803329/photo/1,https://twitter.com/dog_rates/status/727314416056803329/photo/1,https://twitter.com/dog_rates/status/727314416056803329/photo/1 1 https://twitter.com/dog_rates/status/852189679701164033/photo/1 1 https://twitter.com/dog_rates/status/687127927494963200/photo/1 1 https://twitter.com/dog_rates/status/769212283578875904/photo/1 1 https://twitter.com/dog_rates/status/676603393314578432/photo/1 1 https://twitter.com/dog_rates/status/682032003584274432/photo/1 1 https://twitter.com/dog_rates/status/692568918515392513/photo/1,https://twitter.com/dog_rates/status/692568918515392513/photo/1,https://twitter.com/dog_rates/status/692568918515392513/photo/1 1 https://twitter.com/dog_rates/status/861005113778896900/photo/1 1 https://twitter.com/dog_rates/status/847962785489326080/photo/1 1 https://twitter.com/dog_rates/status/670055038660800512/photo/1 1 https://twitter.com/dog_rates/status/715360349751484417/photo/1 1 https://twitter.com/dog_rates/status/674468880899788800/photo/1,https://twitter.com/dog_rates/status/674468880899788800/photo/1 1 https://twitter.com/dog_rates/status/683498322573824003/photo/1 1 https://twitter.com/dog_rates/status/880095782870896641/photo/1 1 https://twitter.com/dog_rates/status/675501075957489664/photo/1,https://twitter.com/dog_rates/status/675501075957489664/photo/1 1 https://twitter.com/dog_rates/status/735256018284875776/photo/1 1 https://twitter.com/dog_rates/status/730573383004487680/photo/1,https://twitter.com/dog_rates/status/730573383004487680/photo/1,https://twitter.com/dog_rates/status/730573383004487680/photo/1 1 https://twitter.com/dog_rates/status/795464331001561088/video/1 1 https://twitter.com/dog_rates/status/864197398364647424/photo/1,https://twitter.com/dog_rates/status/864197398364647424/photo/1,https://twitter.com/dog_rates/status/864197398364647424/photo/1,https://twitter.com/dog_rates/status/864197398364647424/photo/1 1 https://twitter.com/dog_rates/status/668190681446379520/photo/1 1 https://twitter.com/dog_rates/status/668625577880875008/photo/1 1 https://twitter.com/dog_rates/status/698178924120031232/photo/1 1 https://twitter.com/dog_rates/status/746818907684614144/photo/1 1 https://twitter.com/dog_rates/status/743609206067040256/photo/1,https://twitter.com/dog_rates/status/743609206067040256/photo/1,https://twitter.com/dog_rates/status/743609206067040256/photo/1 1 https://twitter.com/dog_rates/status/669367896104181761/photo/1 1 https://twitter.com/dog_rates/status/820690176645140481/photo/1,https://twitter.com/dog_rates/status/820690176645140481/photo/1,https://twitter.com/dog_rates/status/820690176645140481/photo/1 1 https://twitter.com/dog_rates/status/806219024703037440/photo/1 1 https://twitter.com/dog_rates/status/811386762094317568/photo/1 1 https://vine.co/v/i1KWj0vbvA9 1 https://twitter.com/dog_rates/status/755955933503782912/video/1 1 https://twitter.com/dog_rates/status/712092745624633345/photo/1 1 https://twitter.com/dog_rates/status/822975315408461824/photo/1 1 https://twitter.com/frasercampbell_/status/855122533267460096/photo/1 1 https://twitter.com/dog_rates/status/678424312106393600/photo/1 1 https://vine.co/v/iM2hLu9LU5i 1 https://twitter.com/dog_rates/status/674291837063053312/photo/1,https://twitter.com/dog_rates/status/674291837063053312/photo/1 1 https://twitter.com/dog_rates/status/668981893510119424/photo/1 1 https://twitter.com/dog_rates/status/670704688707301377/photo/1 1 https://twitter.com/dog_rates/status/671768281401958400/photo/1,https://twitter.com/dog_rates/status/671768281401958400/photo/1 1 https://twitter.com/dog_rates/status/673686845050527744/photo/1 1 https://twitter.com/dog_rates/status/826598365270007810/photo/1,https://twitter.com/dog_rates/status/826598365270007810/photo/1,https://twitter.com/dog_rates/status/826598365270007810/photo/1 1 https://twitter.com/dog_rates/status/747512671126323200/photo/1 1 https://twitter.com/dog_rates/status/679511351870550016/photo/1 1 https://twitter.com/dog_rates/status/691459709405118465/photo/1,https://twitter.com/dog_rates/status/691459709405118465/photo/1 1 https://twitter.com/dog_rates/status/666345417576210432/photo/1 1 https://twitter.com/dog_rates/status/676237365392908289/photo/1 1 https://twitter.com/dog_rates/status/732732193018155009/photo/1 1 https://twitter.com/dog_rates/status/703382836347330562/photo/1,https://twitter.com/dog_rates/status/703382836347330562/photo/1 1 https://twitter.com/dog_rates/status/670417414769758208/photo/1 1 https://twitter.com/dog_rates/status/673711475735838725/photo/1 1 https://vine.co/v/iXQAm5Lrgrh 1 https://twitter.com/bbcworld/status/878599868507402241 1 https://twitter.com/dog_rates/status/672254177670729728/photo/1 1 https://twitter.com/dog_rates/status/691416866452082688/photo/1 1 https://twitter.com/bvuepd/status/804417859124273152 1 https://twitter.com/dog_rates/status/696886256886657024/photo/1 1 https://twitter.com/dog_rates/status/781955203444699136/photo/1 1 https://twitter.com/dog_rates/status/676617503762681856/photo/1 1 https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1 1 https://twitter.com/dog_rates/status/821044531881721856/photo/1 1 https://twitter.com/dog_rates/status/695314793360662529/photo/1,https://twitter.com/dog_rates/status/695314793360662529/photo/1,https://twitter.com/dog_rates/status/695314793360662529/photo/1,https://twitter.com/dog_rates/status/695314793360662529/photo/1 1 https://twitter.com/dog_rates/status/743595368194129920/photo/1 1 https://twitter.com/dog_rates/status/709556954897764353/photo/1,https://twitter.com/dog_rates/status/709556954897764353/photo/1,https://twitter.com/dog_rates/status/709556954897764353/photo/1 1 https://twitter.com/dog_rates/status/681281657291280384/photo/1 1 https://twitter.com/dog_rates/status/668274247790391296/photo/1 1 https://twitter.com/dog_rates/status/766313316352462849/photo/1 1 https://twitter.com/dog_rates/status/666287406224695296/photo/1 1 https://twitter.com/dog_rates/status/679111216690831360/video/1 1 https://twitter.com/dog_rates/status/679777920601223168/photo/1 1 https://twitter.com/dog_rates/status/748932637671223296/photo/1 1 https://twitter.com/dog_rates/status/682303737705140231/photo/1 1 https://twitter.com/dog_rates/status/750056684286914561/photo/1 1 https://twitter.com/dog_rates/status/778027034220126208/photo/1 1 https://twitter.com/dog_rates/status/670995969505435648/photo/1,https://twitter.com/dog_rates/status/670995969505435648/photo/1,https://twitter.com/dog_rates/status/670995969505435648/photo/1 1 https://twitter.com/dog_rates/status/729463711119904772/photo/1 1 https://twitter.com/dog_rates/status/711694788429553666/photo/1 1 https://twitter.com/dog_rates/status/679047485189439488/photo/1 1 https://twitter.com/dog_rates/status/789599242079838210/photo/1,https://twitter.com/dog_rates/status/789599242079838210/photo/1 1 https://twitter.com/dog_rates/status/673359818736984064/photo/1 1 https://twitter.com/dog_rates/status/675147105808306176/photo/1 1 https://twitter.com/dog_rates/status/746056683365994496/photo/1,https://twitter.com/dog_rates/status/746056683365994496/photo/1 1 https://twitter.com/dog_rates/status/667801013445750784/photo/1 1 https://twitter.com/dog_rates/status/672222792075620352/photo/1 1 https://twitter.com/dog_rates/status/758854675097526272/photo/1,https://twitter.com/dog_rates/status/758854675097526272/photo/1,https://twitter.com/dog_rates/status/758854675097526272/photo/1,https://twitter.com/dog_rates/status/758854675097526272/photo/1 1 https://twitter.com/dog_rates/status/711652651650457602/photo/1 1 https://twitter.com/dog_rates/status/778408200802557953/photo/1,https://twitter.com/dog_rates/status/778408200802557953/photo/1,https://twitter.com/dog_rates/status/778408200802557953/photo/1,https://twitter.com/dog_rates/status/778408200802557953/photo/1 1 https://twitter.com/dog_rates/status/671744970634719232/photo/1 1 https://twitter.com/dog_rates/status/748324050481647620/photo/1,https://twitter.com/dog_rates/status/748324050481647620/photo/1 1 https://twitter.com/dog_rates/status/818627210458333184/photo/1 1 https://twitter.com/dog_rates/status/672466075045466113/photo/1 1 https://vine.co/v/in7ZzHPKzWz 1 https://twitter.com/dog_rates/status/703041949650034688/photo/1,https://twitter.com/dog_rates/status/703041949650034688/photo/1 1 https://twitter.com/dog_rates/status/678399652199309312/video/1 1 https://twitter.com/dog_rates/status/796484825502875648/photo/1 1 https://twitter.com/dog_rates/status/826476773533745153/photo/1 1 https://twitter.com/dog_rates/status/669926384437997569/photo/1 1 https://vine.co/v/5W5YHdTJvaV 1 https://twitter.com/twitter/status/711998279773347841/photo/1,https://twitter.com/twitter/status/711998279773347841/photo/1 1 https://twitter.com/dog_rates/status/825147591692263424/photo/1 1 https://twitter.com/dog_rates/status/667435689202614272/photo/1 1 https://twitter.com/dog_rates/status/749317047558017024/video/1 1 https://twitter.com/dog_rates/status/804738756058218496/photo/1 1 https://twitter.com/dog_rates/status/666020888022790149/photo/1 1 https://twitter.com/dog_rates/status/676440007570247681/photo/1,https://twitter.com/dog_rates/status/676440007570247681/photo/1 1 https://twitter.com/dog_rates/status/693942351086120961/photo/1 1 https://twitter.com/dog_rates/status/773922284943896577/photo/1 1 https://twitter.com/dog_rates/status/714606013974974464/photo/1 1 https://twitter.com/dog_rates/status/676098748976615425/photo/1 1 https://twitter.com/dog_rates/status/702276748847800320/photo/1 1 https://twitter.com/dog_rates/status/780192070812196864/photo/1 1 https://twitter.com/dog_rates/status/792394556390137856/photo/1,https://twitter.com/dog_rates/status/792394556390137856/photo/1 1 https://twitter.com/dog_rates/status/684538444857667585/video/1 1 https://twitter.com/dog_rates/status/714214115368108032/photo/1 1 https://twitter.com/dog_rates/status/715928423106027520/photo/1 1 https://twitter.com/dog_rates/status/693262851218264065/photo/1 1 https://twitter.com/dog_rates/status/671488513339211776/photo/1 1 https://twitter.com/dog_rates/status/713919462244790272/photo/1 1 https://twitter.com/dog_rates/status/704054845121142784/photo/1 1 https://twitter.com/dog_rates/status/880465832366813184/photo/1,https://twitter.com/dog_rates/status/880465832366813184/photo/1,https://twitter.com/dog_rates/status/880465832366813184/photo/1,https://twitter.com/dog_rates/status/880465832366813184/photo/1 1 https://twitter.com/dog_rates/status/770069151037685760/photo/1 1 https://twitter.com/dog_rates/status/889531135344209921/photo/1 1 https://vine.co/v/ibvnzrauFuV,https://vine.co/v/ibvnzrauFuV 1 https://twitter.com/dog_rates/status/686358356425093120/photo/1 1 https://twitter.com/dog_rates/status/731156023742988288/photo/1 1 https://www.gofundme.com/help-save-rontu,https://twitter.com/dog_rates/status/847842811428974592/photo/1 1 https://twitter.com/dog_rates/status/746726898085036033/photo/1 1 https://twitter.com/dog_rates/status/674743008475090944/photo/1 1 https://twitter.com/dog_rates/status/674690135443775488/photo/1 1 https://twitter.com/dog_rates/status/680609293079592961/photo/1 1 https://twitter.com/dog_rates/status/684097758874210310/photo/1 1 https://twitter.com/dog_rates/status/684567543613382656/photo/1 1 https://twitter.com/dog_rates/status/740214038584557568/photo/1 1 https://twitter.com/dog_rates/status/788412144018661376/photo/1,https://twitter.com/dog_rates/status/788412144018661376/photo/1 1 https://twitter.com/dog_rates/status/683078886620553216/photo/1 1 https://vine.co/v/5XH0WqHwiFp 1 https://twitter.com/dog_rates/status/867774946302451713/photo/1,https://twitter.com/dog_rates/status/867774946302451713/photo/1 1 https://twitter.com/dog_rates/status/666033412701032449/photo/1 1 https://twitter.com/dog_rates/status/792773781206999040/photo/1 1 https://twitter.com/dog_rates/status/685325112850124800/photo/1,https://twitter.com/dog_rates/status/685325112850124800/photo/1 1 https://twitter.com/dog_rates/status/666435652385423360/photo/1 1 https://vine.co/v/ixa1ejbXiM7 1 https://twitter.com/dog_rates/status/667437278097252352/photo/1 1 https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1 1 https://twitter.com/dog_rates/status/837482249356513284/photo/1,https://twitter.com/dog_rates/status/837482249356513284/photo/1 1 https://twitter.com/dog_rates/status/793135492858580992/photo/1,https://twitter.com/dog_rates/status/793135492858580992/photo/1 1 https://twitter.com/dog_rates/status/667453023279554560/photo/1 1 https://twitter.com/dog_rates/status/672877615439593473/photo/1 1 https://twitter.com/dog_rates/status/711363825979756544/photo/1,https://twitter.com/dog_rates/status/711363825979756544/photo/1 1 https://twitter.com/dog_rates/status/757354760399941633/photo/1,https://twitter.com/dog_rates/status/757354760399941633/photo/1 1 https://twitter.com/dog_rates/status/668636665813057536/photo/1 1 https://twitter.com/dog_rates/status/702932127499816960/photo/1 1 https://twitter.com/dog_rates/status/761292947749015552/photo/1 1 https://twitter.com/dog_rates/status/738885046782832640/photo/1 1 https://twitter.com/dog_rates/status/765669560888528897/photo/1,https://twitter.com/dog_rates/status/765669560888528897/photo/1,https://twitter.com/dog_rates/status/765669560888528897/photo/1 1 https://twitter.com/abc/status/841311395547250688 1 https://twitter.com/dog_rates/status/683852578183077888/photo/1 1 https://twitter.com/dog_rates/status/757611664640446465/photo/1,https://twitter.com/dog_rates/status/757611664640446465/photo/1,https://twitter.com/dog_rates/status/757611664640446465/photo/1 1 https://twitter.com/littlewiewel/status/800852955880628224,https://twitter.com/littlewiewel/status/800852955880628224 1 https://twitter.com/dog_rates/status/678755239630127104/photo/1 1 https://twitter.com/dog_rates/status/705239209544720384/photo/1 1 https://twitter.com/dog_rates/status/728760639972315136/photo/1,https://twitter.com/dog_rates/status/728760639972315136/photo/1 1 https://twitter.com/dog_rates/status/703425003149250560/photo/1 1 https://twitter.com/dog_rates/status/785927819176054784/photo/1 1 https://twitter.com/dog_rates/status/733482008106668032/photo/1 1 https://twitter.com/dog_rates/status/701889187134500865/photo/1 1 https://twitter.com/dog_rates/status/766793450729734144/photo/1 1 https://twitter.com/dog_rates/status/675497103322386432/photo/1 1 https://twitter.com/dog_rates/status/676582956622721024/photo/1 1 https://twitter.com/dog_rates/status/683142553609318400/photo/1 1 https://twitter.com/dog_rates/status/787810552592695296/photo/1,https://twitter.com/dog_rates/status/787810552592695296/photo/1 1 https://twitter.com/dog_rates/status/672604026190569472/photo/1 1 https://twitter.com/dog_rates/status/667728196545200128/photo/1 1 https://twitter.com/dog_rates/status/737322739594330112/photo/1 1 https://twitter.com/dog_rates/status/724046343203856385/photo/1 1 https://twitter.com/dog_rates/status/743545585370791937/photo/1,https://twitter.com/dog_rates/status/743545585370791937/photo/1,https://twitter.com/dog_rates/status/743545585370791937/photo/1 1 https://twitter.com/dog_rates/status/692919143163629568/photo/1 1 https://twitter.com/dog_rates/status/709852847387627521/photo/1,https://twitter.com/dog_rates/status/709852847387627521/photo/1,https://twitter.com/dog_rates/status/709852847387627521/photo/1,https://twitter.com/dog_rates/status/709852847387627521/photo/1 1 https://twitter.com/dog_rates/status/715733265223708672/photo/1 1 https://twitter.com/dog_rates/status/667073648344346624/photo/1 1 https://twitter.com/dog_rates/status/695629776980148225/photo/1,https://twitter.com/dog_rates/status/695629776980148225/photo/1 1 https://twitter.com/loganamnosis/status/872657584259551233/photo/1 1 https://twitter.com/dog_rates/status/884162670584377345/photo/1 1 https://twitter.com/dog_rates/status/675146535592706048/photo/1 1 https://twitter.com/dog_rates/status/837471256429613056/photo/1,https://twitter.com/dog_rates/status/837471256429613056/photo/1 1 https://twitter.com/dog_rates/status/737800304142471168/photo/1 1 https://twitter.com/dog_rates/status/818614493328580609/photo/1,https://twitter.com/dog_rates/status/818614493328580609/photo/1,https://twitter.com/dog_rates/status/818614493328580609/photo/1,https://twitter.com/dog_rates/status/818614493328580609/photo/1 1 https://twitter.com/dog_rates/status/718454725339934721/photo/1 1 https://twitter.com/dog_rates/status/670832455012716544/photo/1 1 https://twitter.com/dog_rates/status/671154572044468225/photo/1 1 https://twitter.com/dog_rates/status/684926975086034944/photo/1 1 https://twitter.com/dog_rates/status/670428280563085312/photo/1 1 https://twitter.com/dog_rates/status/673576835670777856/photo/1 1 https://twitter.com/dog_rates/status/835172783151792128/photo/1,https://twitter.com/dog_rates/status/835172783151792128/photo/1 1 https://twitter.com/dog_rates/status/752334515931054080/video/1 1 https://twitter.com/dog_rates/status/673956914389192708/photo/1 1 https://twitter.com/dog_rates/status/669363888236994561/photo/1 1 https://twitter.com/dog_rates/status/783085703974514689/photo/1,https://twitter.com/dog_rates/status/783085703974514689/photo/1 1 https://twitter.com/dog_rates/status/719704490224398336/photo/1 1 https://twitter.com/dog_rates/status/670803562457407488/photo/1 1 https://twitter.com/dog_rates/status/882627270321602560/photo/1 1 https://twitter.com/dog_rates/status/720785406564900865/photo/1 1 https://twitter.com/dog_rates/status/740699697422163968/photo/1 1 https://twitter.com/dog_rates/status/833722901757046785/photo/1,https://twitter.com/dog_rates/status/833722901757046785/photo/1 1 https://twitter.com/dog_rates/status/685641971164143616/photo/1 1 https://twitter.com/dog_rates/status/671544874165002241/photo/1 1 https://twitter.com/dog_rates/status/726828223124897792/photo/1 1 https://www.gofundme.com/mingusneedsus,https://twitter.com/dog_rates/status/886736880519319552/photo/1,https://twitter.com/dog_rates/status/886736880519319552/photo/1 1 https://twitter.com/dog_rates/status/750383411068534784/photo/1 1 https://twitter.com/dog_rates/status/703268521220972544/photo/1 1 https://twitter.com/dog_rates/status/725842289046749185/photo/1,https://twitter.com/dog_rates/status/725842289046749185/photo/1 1 https://twitter.com/dog_rates/status/856526610513747968/photo/1 1 https://twitter.com/dog_rates/status/688898160958271489/photo/1,https://twitter.com/dog_rates/status/688898160958271489/photo/1 1 https://twitter.com/dog_rates/status/793226087023144960/photo/1,https://twitter.com/dog_rates/status/793226087023144960/photo/1,https://twitter.com/dog_rates/status/793226087023144960/photo/1 1 https://twitter.com/dog_rates/status/842846295480000512/photo/1 1 https://twitter.com/dog_rates/status/681297372102656000/photo/1 1 https://twitter.com/dog_rates/status/668291999406125056/photo/1 1 https://twitter.com/dog_rates/status/670408998013820928/photo/1 1 https://twitter.com/dog_rates/status/793241302385262592/photo/1 1 https://twitter.com/dog_rates/status/676811746707918848/photo/1 1 https://twitter.com/dog_rates/status/751830394383790080/photo/1,https://twitter.com/dog_rates/status/751830394383790080/photo/1,https://twitter.com/dog_rates/status/751830394383790080/photo/1 1 https://twitter.com/dog_rates/status/667491009379606528/photo/1 1 https://twitter.com/dog_rates/status/676942428000112642/photo/1 1 https://twitter.com/dog_rates/status/668960084974809088/photo/1 1 https://twitter.com/dog_rates/status/677687604918272002/photo/1 1 https://twitter.com/dog_rates/status/680115823365742593/photo/1 1 https://twitter.com/dog_rates/status/714957620017307648/photo/1 1 https://twitter.com/dog_rates/status/673580926094458881/photo/1 1 https://twitter.com/dog_rates/status/667065535570550784/photo/1 1 https://twitter.com/dog_rates/status/676776431406465024/video/1 1 https://twitter.com/dog_rates/status/743253157753532416/photo/1 1 https://twitter.com/dog_rates/status/770655142660169732/photo/1 1 https://twitter.com/dog_rates/status/671390180817915904/photo/1 1 https://twitter.com/dog_rates/status/711743778164514816/photo/1 1 https://twitter.com/dog_rates/status/711968124745228288/photo/1 1 https://twitter.com/dog_rates/status/890006608113172480/photo/1,https://twitter.com/dog_rates/status/890006608113172480/photo/1 1 https://twitter.com/eddie_coe98/status/848289382176100353/photo/1,https://twitter.com/eddie_coe98/status/848289382176100353/photo/1 1 https://twitter.com/dog_rates/status/743980027717509120/photo/1 1 https://twitter.com/dog_rates/status/687480748861947905/photo/1 1 https://twitter.com/dog_rates/status/671497587707535361/photo/1 1 https://twitter.com/dog_rates/status/697881462549430272/photo/1 1 https://twitter.com/EmilieGambril/status/832766382198566913/photo/1,https://twitter.com/EmilieGambril/status/832766382198566913/photo/1,https://twitter.com/EmilieGambril/status/832766382198566913/photo/1,https://twitter.com/EmilieGambril/status/832766382198566913/photo/1 1 https://twitter.com/dog_rates/status/683773439333797890/photo/1 1 https://twitter.com/dog_rates/status/709042156699303936/photo/1 1 https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1 1 https://twitter.com/dog_rates/status/780800785462489090/photo/1,https://twitter.com/dog_rates/status/780800785462489090/photo/1,https://twitter.com/dog_rates/status/780800785462489090/photo/1 1 https://twitter.com/dog_rates/status/885984800019947520/photo/1 1 https://twitter.com/dog_rates/status/750071704093859840/photo/1,https://twitter.com/dog_rates/status/750071704093859840/photo/1,https://twitter.com/dog_rates/status/750071704093859840/photo/1 1 https://twitter.com/dog_rates/status/669682095984410625/photo/1 1 https://twitter.com/dog_rates/status/789628658055020548/photo/1 1 https://twitter.com/stickergrub/status/709919141004595201 1 https://twitter.com/sebscat/status/788818328538099712 1 https://twitter.com/dog_rates/status/732585889486888962/photo/1,https://twitter.com/dog_rates/status/732585889486888962/photo/1 1 https://twitter.com/dog_rates/status/671536543010570240/photo/1 1 https://twitter.com/dog_rates/status/674036086168010753/photo/1 1 https://twitter.com/dog_rates/status/673363615379013632/photo/1 1 https://vine.co/v/iMqBebnOvav 1 https://twitter.com/dog_rates/status/881268444196462592/photo/1 1 https://twitter.com/dog_rates/status/671504605491109889/photo/1,https://twitter.com/dog_rates/status/671504605491109889/photo/1 1 https://twitter.com/dog_rates/status/666407126856765440/photo/1 1 https://twitter.com/dog_rates/status/697463031882764288/photo/1 1 https://vine.co/v/iMZx6aDbExn 1 https://twitter.com/dog_rates/status/682393905736888321/photo/1 1 https://twitter.com/dog_rates/status/672964561327235073/photo/1 1 https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1 1 https://twitter.com/dog_rates/status/669749430875258880/photo/1 1 https://twitter.com/dog_rates/status/668204964695683073/photo/1 1 https://twitter.com/dog_rates/status/670811965569282048/photo/1 1 https://twitter.com/dog_rates/status/766423258543644672/photo/1,https://twitter.com/dog_rates/status/766423258543644672/photo/1 1 https://twitter.com/dog_rates/status/675003128568291329/photo/1,https://twitter.com/dog_rates/status/675003128568291329/photo/1 1 https://twitter.com/dog_rates/status/677547928504967168/photo/1 1 https://twitter.com/dog_rates/status/674788554665512960/photo/1 1 https://twitter.com/dog_rates/status/684594889858887680/photo/1 1 https://twitter.com/dog_rates/status/701981390485725185/photo/1 1 https://twitter.com/dog_rates/status/672997845381865473/photo/1 1 https://twitter.com/dog_rates/status/773547596996571136/photo/1,https://twitter.com/dog_rates/status/773547596996571136/photo/1 1 https://twitter.com/dog_rates/status/678380236862578688/photo/1 1 https://twitter.com/shomaristone/status/846484798663245829 1 https://twitter.com/dog_rates/status/672248013293752320/photo/1 1 https://twitter.com/dog_rates/status/709918798883774466/photo/1,https://twitter.com/dog_rates/status/709918798883774466/photo/1 1 https://twitter.com/dog_rates/status/671486386088865792/photo/1 1 https://twitter.com/dog_rates/status/761227390836215808/photo/1 1 https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1 1 https://twitter.com/dog_rates/status/835152434251116546/photo/1,https://twitter.com/dog_rates/status/835152434251116546/photo/1,https://twitter.com/dog_rates/status/835152434251116546/photo/1 1 https://twitter.com/dog_rates/status/812709060537683968/photo/1 1 https://vine.co/v/imJ0BdZOJTw 1 https://twitter.com/dog_rates/status/701214700881756160/photo/1,https://twitter.com/dog_rates/status/701214700881756160/photo/1 1 https://vine.co/v/iXQAm5Lrgrh,https://vine.co/v/iXQAm5Lrgrh 1 https://twitter.com/dog_rates/status/697616773278015490/photo/1,https://twitter.com/dog_rates/status/697616773278015490/photo/1 1 https://twitter.com/dog_rates/status/720389942216527872/photo/1 1 https://twitter.com/dog_rates/status/666373753744588802/photo/1 1 https://twitter.com/dog_rates/status/777684233540206592/photo/1 1 https://twitter.com/dog_rates/status/683742671509258241/photo/1 1 https://twitter.com/dog_rates/status/768609597686943744/photo/1 1 https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1 1 https://twitter.com/dog_rates/status/708810915978854401/photo/1,https://twitter.com/dog_rates/status/708810915978854401/photo/1,https://twitter.com/dog_rates/status/708810915978854401/photo/1 1 https://twitter.com/dog_rates/status/699323444782047232/photo/1 1 https://twitter.com/dog_rates/status/704871453724954624/photo/1 1 https://twitter.com/dog_rates/status/757741869644341248/photo/1,https://twitter.com/dog_rates/status/757741869644341248/photo/1 1 https://twitter.com/dog_rates/status/696405997980676096/photo/1 1 https://twitter.com/dog_rates/status/707741517457260545/photo/1 1 https://twitter.com/dog_rates/status/808838249661788160/photo/1 1 https://twitter.com/dog_rates/status/689659372465688576/photo/1 1 https://twitter.com/dog_rates/status/716285507865542656/photo/1,https://twitter.com/dog_rates/status/716285507865542656/photo/1 1 https://twitter.com/dog_rates/status/747844099428986880/photo/1 1 https://twitter.com/dog_rates/status/671891728106971137/photo/1 1 https://www.gofundme.com/sick-baby-samson,https://twitter.com/dog_rates/status/830097400375152640/photo/1,https://twitter.com/dog_rates/status/830097400375152640/photo/1,https://twitter.com/dog_rates/status/830097400375152640/photo/1,https://twitter.com/dog_rates/status/830097400375152640/photo/1 1 https://twitter.com/dog_rates/status/676613908052996102/photo/1 1 https://twitter.com/dog_rates/status/674790488185167872/photo/1 1 https://twitter.com/dog_rates/status/703774238772166656/photo/1 1 https://twitter.com/dog_rates/status/813081950185472002/photo/1,https://twitter.com/dog_rates/status/813081950185472002/photo/1 1 https://twitter.com/dog_rates/status/752682090207055872/photo/1,https://twitter.com/dog_rates/status/752682090207055872/photo/1 1 https://twitter.com/king5seattle/status/796123679771897856 1 https://twitter.com/dog_rates/status/726887082820554753/photo/1 1 https://twitter.com/dog_rates/status/798925684722855936/photo/1 1 https://vine.co/v/ienexVMZgi5 1 https://vine.co/v/5uZYwqmuDeT 1 https://twitter.com/dog_rates/status/771136648247640064/photo/1 1 https://vine.co/v/5W2Dg3XPX7a,https://vine.co/v/5W2Dg3XPX7a 1 https://twitter.com/dog_rates/status/796387464403357696/photo/1,https://twitter.com/dog_rates/status/796387464403357696/photo/1 1 https://twitter.com/dog_rates/status/817120970343411712/photo/1 1 https://vine.co/v/iOuMphL5DBY 1 https://twitter.com/dog_rates/status/792883833364439040/photo/1,https://twitter.com/dog_rates/status/792883833364439040/photo/1,https://twitter.com/dog_rates/status/792883833364439040/photo/1,https://twitter.com/dog_rates/status/792883833364439040/photo/1 1 https://twitter.com/dog_rates/status/670755717859713024/photo/1 1 https://twitter.com/dog_rates/status/674644256330530816/photo/1 1 https://twitter.com/dog_rates/status/798933969379225600/photo/1,https://twitter.com/dog_rates/status/798933969379225600/photo/1 1 https://twitter.com/dog_rates/status/764259802650378240/photo/1,https://twitter.com/dog_rates/status/764259802650378240/photo/1 1 https://twitter.com/dog_rates/status/666804364988780544/photo/1 1 https://twitter.com/badlandsnps/status/823966201328046080 1 https://twitter.com/dog_rates/status/703079050210877440/photo/1,https://twitter.com/dog_rates/status/703079050210877440/photo/1 1 https://twitter.com/dog_rates/status/688828561667567616/photo/1 1 https://twitter.com/dog_rates/status/678396796259975168/photo/1,https://twitter.com/dog_rates/status/678396796259975168/photo/1 1 https://twitter.com/dog_rates/status/871515927908634625/photo/1,https://twitter.com/dog_rates/status/871515927908634625/photo/1 1 https://twitter.com/dog_rates/status/671542985629241344/photo/1 1 https://twitter.com/dog_rates/status/728035342121635841/photo/1,https://twitter.com/dog_rates/status/728035342121635841/photo/1 1 https://twitter.com/dog_rates/status/716802964044845056/photo/1,https://twitter.com/dog_rates/status/716802964044845056/photo/1 1 https://twitter.com/dog_rates/status/714258258790387713/photo/1 1 https://twitter.com/dog_rates/status/767191397493538821/photo/1 1 https://vine.co/v/5W2Dg3XPX7a 1 https://twitter.com/dog_rates/status/670319130621435904/photo/1,https://twitter.com/dog_rates/status/670319130621435904/photo/1 1 https://twitter.com/dog_rates/status/857746408056729600/photo/1,https://twitter.com/dog_rates/status/857746408056729600/photo/1,https://twitter.com/dog_rates/status/857746408056729600/photo/1 1 https://twitter.com/dog_rates/status/724771698126512129/photo/1,https://twitter.com/dog_rates/status/724771698126512129/photo/1,https://twitter.com/dog_rates/status/724771698126512129/photo/1,https://twitter.com/dog_rates/status/724771698126512129/photo/1 1 https://twitter.com/dog_rates/status/717537687239008257/photo/1 1 https://twitter.com/dog_rates/status/879008229531029506/photo/1 1 https://twitter.com/dog_rates/status/702217446468493312/photo/1 1 https://twitter.com/dog_rates/status/818536468981415936/photo/1 1 https://twitter.com/dog_rates/status/668297328638447616/photo/1 1 https://twitter.com/dog_rates/status/670474236058800128/photo/1 1 https://twitter.com/dog_rates/status/722613351520608256/photo/1 1 https://twitter.com/dog_rates/status/698342080612007937/video/1 1 https://twitter.com/dog_rates/status/874680097055178752/photo/1 1 https://twitter.com/dog_rates/status/675349384339542016/photo/1,https://twitter.com/dog_rates/status/675349384339542016/photo/1,https://twitter.com/dog_rates/status/675349384339542016/photo/1,https://twitter.com/dog_rates/status/675349384339542016/photo/1 1 https://twitter.com/dog_rates/status/705066031337840642/photo/1 1 https://twitter.com/dog_rates/status/670444955656130560/photo/1 1 https://twitter.com/dog_rates/status/854732716440526848/photo/1,https://twitter.com/dog_rates/status/854732716440526848/photo/1,https://twitter.com/dog_rates/status/854732716440526848/photo/1,https://twitter.com/dog_rates/status/854732716440526848/photo/1 1 https://twitter.com/dog_rates/status/666739327293083650/photo/1 1 https://twitter.com/dog_rates/status/757393109802180609/photo/1,https://twitter.com/dog_rates/status/757393109802180609/photo/1,https://twitter.com/dog_rates/status/757393109802180609/photo/1,https://twitter.com/dog_rates/status/757393109802180609/photo/1 1 https://twitter.com/dog_rates/status/674664755118911488/photo/1 1 https://twitter.com/dog_rates/status/890729181411237888/photo/1,https://twitter.com/dog_rates/status/890729181411237888/photo/1 1 https://twitter.com/dog_rates/status/708349470027751425/photo/1 1 https://twitter.com/dog_rates/status/677331501395156992/photo/1 1 https://twitter.com/dog_rates/status/828381636999917570/photo/1 1 https://twitter.com/dog_rates/status/858843525470990336/photo/1 1 https://twitter.com/dog_rates/status/676975532580409345/photo/1 1 https://twitter.com/dog_rates/status/844223788422217728/photo/1 1 https://twitter.com/dog_rates/status/680889648562991104/photo/1 1 https://twitter.com/dog_rates/status/676101918813499392/photo/1 1 https://twitter.com/dog_rates/status/833863086058651648/photo/1,https://twitter.com/dog_rates/status/833863086058651648/photo/1 1 https://twitter.com/dog_rates/status/670433248821026816/photo/1 1 https://twitter.com/dog_rates/status/667443425659232256/photo/1 1 https://twitter.com/dog_rates/status/712065007010385924/photo/1 1 https://twitter.com/dog_rates/status/702671118226825216/photo/1 1 https://twitter.com/dog_rates/status/670833812859932673/photo/1 1 https://twitter.com/dog_rates/status/713411074226274305/photo/1 1 https://twitter.com/dog_rates/status/684188786104872960/photo/1 1 https://twitter.com/dog_rates/status/849776966551130114/photo/1,https://twitter.com/dog_rates/status/849776966551130114/photo/1 1 https://twitter.com/dog_rates/status/862096992088072192/photo/1,https://twitter.com/dog_rates/status/862096992088072192/photo/1 1 https://twitter.com/dog_rates/status/674008982932058114/photo/1 1 https://vine.co/v/iqMjlxULzbn 1 https://twitter.com/dog_rates/status/678410210315247616/photo/1 1 https://twitter.com/dog_rates/status/673270968295534593/photo/1 1 https://twitter.com/dog_rates/status/867051520902168576/photo/1 1 https://twitter.com/dog_rates/status/675047298674663426/photo/1 1 https://vine.co/v/igW2OEwu9vg 1 https://twitter.com/dog_rates/status/681320187870711809/photo/1 1 https://twitter.com/dog_rates/status/680440374763077632/video/1 1 https://twitter.com/dog_rates/status/670842764863651840/photo/1 1 https://twitter.com/dog_rates/status/710588934686908417/photo/1,https://twitter.com/dog_rates/status/710588934686908417/photo/1,https://twitter.com/dog_rates/status/710588934686908417/photo/1,https://twitter.com/dog_rates/status/710588934686908417/photo/1 1 https://twitter.com/dog_rates/status/673350198937153538/photo/1 1 https://twitter.com/dog_rates/status/813217897535406080/photo/1,https://twitter.com/dog_rates/status/813217897535406080/photo/1,https://twitter.com/dog_rates/status/813217897535406080/photo/1,https://twitter.com/dog_rates/status/813217897535406080/photo/1 1 https://twitter.com/dog_rates/status/850753642995093505/photo/1,https://twitter.com/dog_rates/status/850753642995093505/photo/1 1 https://twitter.com/dog_rates/status/807106840509214720/video/1,https://twitter.com/dog_rates/status/807106840509214720/video/1 1 https://twitter.com/dog_rates/status/668623201287675904/photo/1,https://twitter.com/dog_rates/status/668623201287675904/photo/1,https://twitter.com/dog_rates/status/668623201287675904/photo/1,https://twitter.com/dog_rates/status/668623201287675904/photo/1 1 https://www.gofundme.com/help-strudel-walk-again?rcid=ec2be8b6f825461f8ee0fd5dcdf43fea,https://twitter.com/dog_rates/status/817415592588222464/photo/1 1 https://twitter.com/dog_rates/status/691756958957883396/photo/1 1 https://twitter.com/dog_rates/status/693647888581312512/photo/1 1 https://twitter.com/dog_rates/status/801285448605831168/photo/1 1 https://twitter.com/dog_rates/status/670807719151067136/photo/1,https://twitter.com/dog_rates/status/670807719151067136/photo/1,https://twitter.com/dog_rates/status/670807719151067136/photo/1 1 https://twitter.com/dog_rates/status/683449695444799489/photo/1 1 https://twitter.com/dog_rates/status/732375214819057664/photo/1 1 https://twitter.com/dog_rates/status/683857920510050305/photo/1 1 https://twitter.com/dog_rates/status/708130923141795840/photo/1 1 https://twitter.com/dog_rates/status/668989615043424256/photo/1 1 https://twitter.com/dog_rates/status/700167517596164096/photo/1 1 https://twitter.com/dog_rates/status/678991772295516161/photo/1 1 https://twitter.com/dog_rates/status/754482103782404096/video/1 1 https://twitter.com/dog_rates/status/671147085991960577/photo/1 1 https://twitter.com/dog_rates/status/790698755171364864/photo/1 1 https://twitter.com/dog_rates/status/692901601640583168/photo/1 1 https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1 1 https://twitter.com/dog_rates/status/669993076832759809/photo/1 1 https://twitter.com/dog_rates/status/671879137494245376/photo/1 1 https://twitter.com/dog_rates/status/715220193576927233/photo/1 1 https://twitter.com/dog_rates/status/690597161306841088/photo/1 1 https://twitter.com/dog_rates/status/713761197720473600/photo/1,https://twitter.com/dog_rates/status/713761197720473600/photo/1 1 https://twitter.com/dog_rates/status/744334592493166593/photo/1 1 https://twitter.com/dog_rates/status/828408677031882754/photo/1 1 http://us.blastingnews.com/news/2017/01/200-dogs-saved-from-south-korean-dog-meat-industry-001385441.html?sbdht=_pM1QUzk3wsfscF9XF2WEd9KoWDpsQlMUjfh1HxxUq0u5mMbiu2B0kw2_ 1 https://twitter.com/dog_rates/status/826958653328592898/photo/1,https://twitter.com/dog_rates/status/826958653328592898/photo/1 1 https://twitter.com/dog_rates/status/782747134529531904/photo/1 1 https://twitter.com/dog_rates/status/746872823977771008/photo/1,https://twitter.com/dog_rates/status/746872823977771008/photo/1 1 https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1 1 https://twitter.com/dog_rates/status/675706639471788032/photo/1 1 https://twitter.com/dog_rates/status/716080869887381504/photo/1,https://twitter.com/dog_rates/status/716080869887381504/photo/1 1 https://twitter.com/dog_rates/status/684225744407494656/photo/1,https://twitter.com/dog_rates/status/684225744407494656/photo/1 1 https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1 1 https://twitter.com/dog_rates/status/796759840936919040/photo/1,https://twitter.com/dog_rates/status/796759840936919040/photo/1 1 https://twitter.com/dog_rates/status/674024893172875264/photo/1 1 https://twitter.com/dog_rates/status/754747087846248448/photo/1 1 https://twitter.com/dog_rates/status/685315239903100929/photo/1,https://twitter.com/dog_rates/status/685315239903100929/photo/1 1 https://twitter.com/dog_rates/status/854365224396361728/photo/1,https://twitter.com/dog_rates/status/854365224396361728/photo/1 1 https://twitter.com/dog_rates/status/821886076407029760/photo/1 1 https://twitter.com/dog_rates/status/863553081350529029/video/1 1 https://twitter.com/dog_rates/status/672068090318987265/photo/1 1 https://www.gofundme.com/sams-smile,https://twitter.com/dog_rates/status/810984652412424192/photo/1 1 https://twitter.com/dog_rates/status/667160273090932737/photo/1 1 https://twitter.com/dog_rates/status/684177701129875456/photo/1 1 https://twitter.com/dog_rates/status/672125275208069120/photo/1 1 https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1 1 https://twitter.com/dog_rates/status/698703483621523456/photo/1 1 https://twitter.com/dog_rates/status/675898130735476737/photo/1 1 https://twitter.com/dog_rates/status/746507379341139972/photo/1,https://twitter.com/dog_rates/status/746507379341139972/photo/1 1 https://twitter.com/dog_rates/status/740359016048689152/photo/1 1 https://twitter.com/dog_rates/status/866686824827068416/photo/1,https://twitter.com/dog_rates/status/866686824827068416/photo/1 1 https://twitter.com/dog_rates/status/773191612633579521/photo/1,https://twitter.com/dog_rates/status/773191612633579521/photo/1 1 https://twitter.com/dog_rates/status/667793409583771648/photo/1 1 https://twitter.com/dog_rates/status/779377524342161408/video/1 1 https://twitter.com/dog_rates/status/671789708968640512/photo/1 1 https://twitter.com/dog_rates/status/673583129559498752/photo/1 1 https://twitter.com/dog_rates/status/738537504001953792/photo/1,https://twitter.com/dog_rates/status/738537504001953792/photo/1 1 https://twitter.com/dog_rates/status/879492040517615616/photo/1 1 https://twitter.com/dog_rates/status/671141549288370177/photo/1 1 https://twitter.com/dog_rates/status/776477788987613185/photo/1,https://twitter.com/dog_rates/status/776477788987613185/photo/1 1 https://twitter.com/dog_rates/status/685906723014619143/photo/1,https://twitter.com/dog_rates/status/685906723014619143/photo/1 1 https://twitter.com/dog_rates/status/739932936087216128/photo/1 1 https://twitter.com/dog_rates/status/772826264096874500/photo/1 1 https://twitter.com/dog_rates/status/709158332880297985/photo/1 1 https://twitter.com/dog_rates/status/669564461267722241/photo/1 1 https://twitter.com/dog_rates/status/689280876073582592/photo/1,https://twitter.com/dog_rates/status/689280876073582592/photo/1,https://twitter.com/dog_rates/status/689280876073582592/photo/1,https://twitter.com/dog_rates/status/689280876073582592/photo/1 1 https://twitter.com/dog_rates/status/666649482315059201/photo/1 1 https://twitter.com/dog_rates/status/674416750885273600/photo/1 1 https://twitter.com/dog_rates/status/834574053763584002/photo/1 1 https://twitter.com/dog_rates/status/667538891197542400/photo/1 1 https://twitter.com/dog_rates/status/671362598324076544/photo/1 1 https://twitter.com/dog_rates/status/880221127280381952/photo/1,https://twitter.com/dog_rates/status/880221127280381952/photo/1 1 https://twitter.com/dog_rates/status/669970042633789440/photo/1 1 https://twitter.com/dog_rates/status/675166823650848770/photo/1 1 https://twitter.com/dog_rates/status/842535590457499648/photo/1 1 https://twitter.com/dog_rates/status/672984142909456390/photo/1 1 https://twitter.com/dog_rates/status/672523490734551040/photo/1 1 https://twitter.com/dog_rates/status/712717840512598017/photo/1 1 https://twitter.com/dog_rates/status/683849932751646720/photo/1 1 https://twitter.com/dog_rates/status/671347597085433856/photo/1,https://twitter.com/dog_rates/status/671347597085433856/photo/1 1 https://twitter.com/dog_rates/status/774639387460112384/photo/1,https://twitter.com/dog_rates/status/774639387460112384/photo/1 1 https://twitter.com/dog_rates/status/666786068205871104/photo/1 1 https://twitter.com/dog_rates/status/827600520311402496/photo/1 1 https://twitter.com/dog_rates/status/846874817362120707/photo/1,https://twitter.com/dog_rates/status/846874817362120707/photo/1 1 https://twitter.com/dog_rates/status/892420643555336193/photo/1 1 https://twitter.com/dog_rates/status/694905863685980160/photo/1 1 https://twitter.com/dog_rates/status/862831371563274240/photo/1,https://twitter.com/dog_rates/status/862831371563274240/photo/1 1 https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1 1 https://twitter.com/dog_rates/status/705223444686888960/photo/1 1 https://vine.co/v/ivV6Y37mH5Z 1 https://twitter.com/dog_rates/status/699036661657767936/photo/1 1 https://twitter.com/dog_rates/status/666701168228331520/photo/1 1 https://twitter.com/dog_rates/status/667902449697558528/photo/1 1 https://twitter.com/4bonds2carbon/status/885517367337512960 1 https://twitter.com/dog_rates/status/686034024800862208/photo/1 1 https://twitter.com/dog_rates/status/878776093423087618/photo/1,https://twitter.com/dog_rates/status/878776093423087618/photo/1 1 https://twitter.com/dog_rates/status/752173152931807232/photo/1,https://twitter.com/dog_rates/status/752173152931807232/photo/1 1 https://twitter.com/dog_rates/status/802265048156610565/photo/1 1 https://twitter.com/dog_rates/status/750506206503038976/photo/1 1 https://twitter.com/dog_rates/status/699446877801091073/photo/1,https://twitter.com/dog_rates/status/699446877801091073/photo/1,https://twitter.com/dog_rates/status/699446877801091073/photo/1 1 https://twitter.com/dog_rates/status/837110210464448512/photo/1 1 https://twitter.com/dog_rates/status/786595970293370880/photo/1 1 https://twitter.com/dog_rates/status/689275259254616065/photo/1 1 https://twitter.com/dog_rates/status/723179728551723008/photo/1 1 https://twitter.com/dog_rates/status/679158373988876288/photo/1 1 https://twitter.com/dog_rates/status/740711788199743490/photo/1 1 https://twitter.com/dog_rates/status/687704180304273409/photo/1 1 https://twitter.com/dog_rates/status/674038233588723717/photo/1 1 https://twitter.com/dog_rates/status/672169685991993344/photo/1 1 https://twitter.com/dog_rates/status/668286279830867968/photo/1 1 https://twitter.com/dog_rates/status/691820333922455552/photo/1 1 https://twitter.com/dog_rates/status/707420581654872064/photo/1 1 https://twitter.com/dog_rates/status/692530551048294401/photo/1 1 https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1 1 https://twitter.com/dog_rates/status/819588359383371776/photo/1 1 https://twitter.com/dog_rates/status/824325613288833024/photo/1 1 https://twitter.com/dog_rates/status/758355060040593408/photo/1 1 https://vine.co/v/ihWIxntjtO7 1 https://twitter.com/dog_rates/status/683098815881154561/photo/1 1 https://twitter.com/dog_rates/status/881666595344535552/photo/1 1 https://twitter.com/dog_rates/status/827653905312006145/photo/1 1 https://twitter.com/dog_rates/status/701545186879471618/photo/1 1 https://twitter.com/dog_rates/status/700029284593901568/photo/1 1 https://twitter.com/dog_rates/status/698710712454139905/photo/1 1 https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1 1 https://vine.co/v/5BYq6hmrEI3,https://vine.co/v/5BYq6hmrEI3 1 https://twitter.com/dog_rates/status/689154315265683456/photo/1 1 https://twitter.com/dog_rates/status/728653952833728512/photo/1,https://twitter.com/dog_rates/status/728653952833728512/photo/1,https://twitter.com/dog_rates/status/728653952833728512/photo/1 1 https://twitter.com/dog_rates/status/738883359779196928/photo/1,https://twitter.com/dog_rates/status/738883359779196928/photo/1 1 https://twitter.com/dog_rates/status/882045870035918850/photo/1,https://twitter.com/dog_rates/status/882045870035918850/photo/1,https://twitter.com/dog_rates/status/882045870035918850/photo/1,https://twitter.com/dog_rates/status/882045870035918850/photo/1 1 https://twitter.com/dog_rates/status/819711362133872643/photo/1,https://twitter.com/dog_rates/status/819711362133872643/photo/1 1 https://twitter.com/dog_rates/status/743510151680958465/video/1 1 https://twitter.com/dog_rates/status/777885040357281792/photo/1,https://twitter.com/dog_rates/status/777885040357281792/photo/1 1 https://twitter.com/dog_rates/status/672205392827572224/photo/1 1 https://twitter.com/dog_rates/status/671866342182637568/photo/1 1 https://twitter.com/dog_rates/status/699072405256409088/video/1 1 https://twitter.com/dog_rates/status/670778058496974848/photo/1 1 https://twitter.com/dog_rates/status/772877495989305348/video/1 1 https://twitter.com/dog_rates/status/675153376133427200/photo/1 1 https://twitter.com/dog_rates/status/739606147276148736/photo/1,https://twitter.com/dog_rates/status/739606147276148736/photo/1,https://twitter.com/dog_rates/status/739606147276148736/photo/1 1 https://twitter.com/dog_rates/status/802952499103731712/photo/1 1 https://twitter.com/dog_rates/status/677673981332312066/photo/1 1 https://twitter.com/dog_rates/status/679877062409191424/photo/1 1 https://twitter.com/dog_rates/status/785533386513321988/photo/1,https://twitter.com/dog_rates/status/785533386513321988/photo/1 1 https://twitter.com/dog_rates/status/685663452032069632/video/1 1 https://twitter.com/dog_rates/status/670679630144274432/photo/1 1 https://twitter.com/dog_rates/status/668988183816871936/photo/1 1 https://twitter.com/dog_rates/status/670338931251150849/photo/1 1 https://twitter.com/dog_rates/status/667502640335572993/photo/1 1 https://twitter.com/dog_rates/status/669351434509529089/photo/1 1 https://twitter.com/dog_rates/status/853639147608842240/photo/1,https://twitter.com/dog_rates/status/853639147608842240/photo/1 1 https://twitter.com/dog_rates/status/678278586130948096/photo/1 1 https://twitter.com/dog_rates/status/735635087207878657/photo/1,https://twitter.com/dog_rates/status/735635087207878657/photo/1 1 https://vine.co/v/iOZKZEU2nHq 1 https://vine.co/v/eEQQaPFbgOY 1 https://twitter.com/dog_rates/status/750868782890057730/photo/1,https://twitter.com/dog_rates/status/750868782890057730/photo/1,https://twitter.com/dog_rates/status/750868782890057730/photo/1,https://twitter.com/dog_rates/status/750868782890057730/photo/1 1 https://twitter.com/dog_rates/status/708469915515297792/photo/1 1 https://twitter.com/dog_rates/status/823699002998870016/photo/1 1 https://twitter.com/dog_rates/status/671763349865160704/photo/1 1 https://twitter.com/dog_rates/status/759197388317847553/photo/1,https://twitter.com/dog_rates/status/759197388317847553/photo/1,https://twitter.com/dog_rates/status/759197388317847553/photo/1 1 https://twitter.com/dog_rates/status/672968025906282496/photo/1 1 https://twitter.com/dog_rates/status/768970937022709760/video/1 1 https://twitter.com/dog_rates/status/749996283729883136/photo/1 1 https://twitter.com/dog_rates/status/689977555533848577/photo/1 1 https://twitter.com/dog_rates/status/735137028879360001/photo/1 1 https://twitter.com/dog_rates/status/758405701903519748/photo/1,https://twitter.com/dog_rates/status/758405701903519748/photo/1,https://twitter.com/dog_rates/status/758405701903519748/photo/1,https://twitter.com/dog_rates/status/758405701903519748/photo/1 1 https://twitter.com/dog_rates/status/710117014656950272/photo/1,https://twitter.com/dog_rates/status/710117014656950272/photo/1 1 https://twitter.com/dog_rates/status/784826020293709826/photo/1 1 https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1 1 https://twitter.com/dog_rates/status/695064344191721472/video/1 1 https://twitter.com/dog_rates/status/847606175596138505/photo/1 1 https://www.gofundme.com/help-save-a-pup,https://twitter.com/dog_rates/status/845397057150107648/photo/1,https://twitter.com/dog_rates/status/845397057150107648/photo/1 1 https://twitter.com/dog_rates/status/844580511645339650/photo/1 1 https://twitter.com/dog_rates/status/749417653287129088/photo/1,https://twitter.com/dog_rates/status/749417653287129088/photo/1,https://twitter.com/dog_rates/status/749417653287129088/photo/1,https://twitter.com/dog_rates/status/749417653287129088/photo/1 1 https://twitter.com/dog_rates/status/801167903437357056/photo/1 1 https://twitter.com/dog_rates/status/788765914992902144/photo/1,https://twitter.com/dog_rates/status/788765914992902144/photo/1 1 https://twitter.com/dog_rates/status/765395769549590528/photo/1 1 https://twitter.com/dog_rates/status/812372279581671427/photo/1,https://twitter.com/dog_rates/status/812372279581671427/photo/1 1 https://twitter.com/dog_rates/status/706310011488698368/photo/1,https://twitter.com/dog_rates/status/706310011488698368/photo/1 1 https://twitter.com/dog_rates/status/796116448414461957/photo/1 1 https://twitter.com/dog_rates/status/810657578271330305/photo/1 1 https://twitter.com/dog_rates/status/817536400337801217/photo/1,https://twitter.com/dog_rates/status/817536400337801217/photo/1,https://twitter.com/dog_rates/status/817536400337801217/photo/1,https://twitter.com/dog_rates/status/817536400337801217/photo/1 1 https://twitter.com/dog_rates/status/670840546554966016/photo/1 1 https://twitter.com/dog_rates/status/738166403467907072/photo/1,https://twitter.com/dog_rates/status/738166403467907072/photo/1,https://twitter.com/dog_rates/status/738166403467907072/photo/1,https://twitter.com/dog_rates/status/738166403467907072/photo/1 1 https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1 1 https://twitter.com/dog_rates/status/822610361945911296/photo/1 1 https://twitter.com/dog_rates/status/666058600524156928/photo/1 1 https://www.gofundme.com/get-indie-home/,https://twitter.com/dog_rates/status/842765311967449089/photo/1,https://twitter.com/dog_rates/status/842765311967449089/photo/1 1 https://twitter.com/dog_rates/status/668480044826800133/photo/1 1 https://twitter.com/dog_rates/status/741303864243200000/photo/1 1 https://twitter.com/ktla/status/838948714227998720 1 https://twitter.com/dog_rates/status/758740312047005698/photo/1 1 https://twitter.com/dog_rates/status/849412302885593088/photo/1,https://twitter.com/dog_rates/status/849412302885593088/photo/1,https://twitter.com/dog_rates/status/849412302885593088/photo/1,https://twitter.com/dog_rates/status/849412302885593088/photo/1 1 https://vine.co/v/iKuMDuYV0aZ 1 https://vine.co/v/iiLjKuYJpr6 1 https://twitter.com/dog_rates/status/707014260413456384/photo/1 1 https://twitter.com/dog_rates/status/672082170312290304/photo/1 1 https://twitter.com/dog_rates/status/668641109086707712/photo/1 1 https://twitter.com/dog_rates/status/687664829264453632/photo/1 1 https://twitter.com/dog_rates/status/781661882474196992/photo/1 1 https://vine.co/v/iw9hUFAMerV 1 https://twitter.com/dog_rates/status/750041628174217216/photo/1 1 https://twitter.com/dog_rates/status/748692773788876800/photo/1 1 https://twitter.com/dog_rates/status/724049859469295616/photo/1 1 https://twitter.com/dog_rates/status/789137962068021249/photo/1,https://twitter.com/dog_rates/status/789137962068021249/photo/1,https://twitter.com/dog_rates/status/789137962068021249/photo/1 1 https://twitter.com/dog_rates/status/694183373896572928/photo/1,https://twitter.com/dog_rates/status/694183373896572928/photo/1 1 https://twitter.com/dog_rates/status/672591271085670400/photo/1 1 https://twitter.com/dog_rates/status/850145622816686080/photo/1,https://twitter.com/dog_rates/status/850145622816686080/photo/1,https://twitter.com/dog_rates/status/850145622816686080/photo/1,https://twitter.com/dog_rates/status/850145622816686080/photo/1 1 https://vine.co/v/iDWlapaXWmm 1 https://twitter.com/dog_rates/status/750101899009982464/photo/1,https://twitter.com/dog_rates/status/750101899009982464/photo/1 1 https://twitter.com/dog_rates/status/775085132600442880/photo/1 1 https://twitter.com/dog_rates/status/773670353721753600/photo/1 1 https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1 1 https://twitter.com/dog_rates/status/670079681849372674/photo/1 1 https://twitter.com/dog_rates/status/669015743032369152/photo/1 1 https://twitter.com/dog_rates/status/686050296934563840/photo/1 1 https://twitter.com/dog_rates/status/667165590075940865/photo/1 1 https://twitter.com/dog_rates/status/697990423684476929/photo/1,https://twitter.com/dog_rates/status/697990423684476929/photo/1,https://twitter.com/dog_rates/status/697990423684476929/photo/1 1 https://twitter.com/dog_rates/status/767500508068192258/photo/1 1 https://twitter.com/dog_rates/status/869227993411051520/photo/1 1 https://twitter.com/dog_rates/status/667911425562669056/photo/1 1 https://twitter.com/dog_rates/status/750011400160841729/photo/1 1 https://twitter.com/dog_rates/status/673680198160809984/photo/1 1 https://twitter.com/dog_rates/status/800751577355128832/photo/1,https://twitter.com/dog_rates/status/800751577355128832/photo/1,https://twitter.com/dog_rates/status/800751577355128832/photo/1 1 https://twitter.com/dog_rates/status/690932576555528194/photo/1 1 https://twitter.com/dog_rates/status/672139350159835138/photo/1 1 https://twitter.com/dog_rates/status/875747767867523072/photo/1 1 https://vine.co/v/iKVFEigMLxP 1 https://twitter.com/dog_rates/status/749064354620928000/photo/1,https://twitter.com/dog_rates/status/749064354620928000/photo/1 1 https://twitter.com/dog_rates/status/677644091929329666/video/1 1 https://twitter.com/dog_rates/status/680473011644985345/photo/1 1 https://twitter.com/dog_rates/status/851591660324737024/photo/1 1 https://twitter.com/dog_rates/status/717047459982213120/photo/1 1 https://twitter.com/dog_rates/status/689557536375177216/photo/1 1 https://twitter.com/dog_rates/status/712809025985978368/photo/1 1 https://twitter.com/dog_rates/status/668932921458302977/photo/1 1 https://twitter.com/dog_rates/status/675015141583413248/photo/1 1 https://twitter.com/dog_rates/status/690015576308211712/photo/1,https://twitter.com/dog_rates/status/690015576308211712/photo/1 1 https://twitter.com/dog_rates/status/865006731092295680/photo/1 1 https://twitter.com/dog_rates/status/724405726123311104/photo/1 1 https://twitter.com/dog_rates/status/669328503091937280/photo/1 1 https://vine.co/v/idaTpwH5TgU 1 https://vine.co/v/5gKxeUpuKEr,https://vine.co/v/5gKxeUpuKEr 1 https://twitter.com/dog_rates/status/666293911632134144/photo/1 1 https://twitter.com/dog_rates/status/667766675769573376/photo/1 1 https://twitter.com/dog_rates/status/773247561583001600/photo/1 1 https://twitter.com/dog_rates/status/725842289046749185/photo/1 1 https://vine.co/v/5BYq6hmrEI3 1 https://twitter.com/dog_rates/status/711306686208872448/photo/1,https://twitter.com/dog_rates/status/711306686208872448/photo/1 1 https://twitter.com/dog_rates/status/667509364010450944/photo/1,https://twitter.com/dog_rates/status/667509364010450944/photo/1 1 https://twitter.com/dog_rates/status/675145476954566656/photo/1 1 https://twitter.com/dog_rates/status/754449512966619136/photo/1 1 https://twitter.com/dog_rates/status/726935089318363137/photo/1,https://twitter.com/dog_rates/status/726935089318363137/photo/1,https://twitter.com/dog_rates/status/726935089318363137/photo/1,https://twitter.com/dog_rates/status/726935089318363137/photo/1 1 https://twitter.com/dog_rates/status/667455448082227200/photo/1 1 https://twitter.com/dog_rates/status/857029823797047296/photo/1,https://twitter.com/dog_rates/status/857029823797047296/photo/1 1 https://vine.co/v/hQJbaj1VpIz,https://vine.co/v/hQJbaj1VpIz 1 https://twitter.com/dog_rates/status/672622327801233409/photo/1 1 https://twitter.com/dog_rates/status/777189768882946048/photo/1,https://twitter.com/dog_rates/status/777189768882946048/photo/1 1 https://twitter.com/dog_rates/status/876120275196170240/photo/1 1 https://twitter.com/dog_rates/status/691096613310316544/photo/1 1 https://twitter.com/dog_rates/status/858471635011153920/photo/1 1 https://twitter.com/dog_rates/status/786664955043049472/photo/1 1 https://twitter.com/dog_rates/status/675740360753160193/video/1 1 https://twitter.com/dog_rates/status/668248472370458624/photo/1 1 https://twitter.com/dog_rates/status/862457590147678208/photo/1,https://twitter.com/dog_rates/status/862457590147678208/photo/1,https://twitter.com/dog_rates/status/862457590147678208/photo/1 1 https://twitter.com/dog_rates/status/715009755312439296/photo/1 1 https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1 1 https://twitter.com/dog_rates/status/687102708889812993/photo/1 1 https://twitter.com/dog_rates/status/857989990357356544/photo/1 1 https://twitter.com/dog_rates/status/670733412878163972/photo/1 1 https://twitter.com/dog_rates/status/685198997565345792/photo/1 1 https://twitter.com/dog_rates/status/814530161257443328/photo/1 1 https://twitter.com/dog_rates/status/672239279297454080/photo/1 1 https://twitter.com/dog_rates/status/761599872357261312/photo/1 1 https://twitter.com/dog_rates/status/677573743309385728/photo/1,https://twitter.com/dog_rates/status/677573743309385728/photo/1 1 https://twitter.com/basic_vacek_/status/847971000004354048/photo/1,https://twitter.com/basic_vacek_/status/847971000004354048/photo/1 1 https://twitter.com/dog_rates/status/826958653328592898/photo/1 1 https://twitter.com/dog_rates/status/769695466921623552/photo/1 1 https://twitter.com/dog_rates/status/675710890956750848/photo/1,https://twitter.com/dog_rates/status/675710890956750848/photo/1 1 https://twitter.com/dog_rates/status/828770345708580865/photo/1 1 https://twitter.com/animalcog/status/871075758080503809 1 https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1 1 https://twitter.com/dog_rates/status/670826280409919488/photo/1 1 https://twitter.com/dog_rates/status/677700003327029250/photo/1 1 https://twitter.com/dog_rates/status/685307451701334016/photo/1 1 https://twitter.com/dog_rates/status/746906459439529985/photo/1 1 https://twitter.com/dog_rates/status/668892474547511297/photo/1 1 https://twitter.com/dog_rates/status/805932879469572096/photo/1 1 https://twitter.com/dog_rates/status/712809025985978368/photo/1,https://twitter.com/dog_rates/status/712809025985978368/photo/1 1 https://twitter.com/dog_rates/status/667806454573760512/photo/1 1 https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1 1 https://twitter.com/dog_rates/status/849051919805034497/photo/1 1 https://vine.co/v/5ghHLBMMdlV,https://vine.co/v/5ghHLBMMdlV 1 https://twitter.com/dog_rates/status/817777686764523521/video/1 1 https://twitter.com/dog_rates/status/668779399630725120/photo/1 1 https://twitter.com/dog_rates/status/746790600704425984/photo/1,https://twitter.com/dog_rates/status/746790600704425984/photo/1,https://twitter.com/dog_rates/status/746790600704425984/photo/1 1 https://twitter.com/dog_rates/status/674063288070742018/photo/1 1 https://twitter.com/dog_rates/status/773985732834758656/photo/1,https://twitter.com/dog_rates/status/773985732834758656/photo/1,https://twitter.com/dog_rates/status/773985732834758656/photo/1,https://twitter.com/dog_rates/status/773985732834758656/photo/1 1 https://twitter.com/dog_rates/status/706166467411222528/photo/1 1 https://twitter.com/dog_rates/status/676897532954456065/photo/1 1 https://twitter.com/dog_rates/status/772114945936949249/photo/1 1 https://twitter.com/dog_rates/status/794926597468000259/photo/1 1 https://twitter.com/dog_rates/status/666837028449972224/photo/1 1 https://twitter.com/dog_rates/status/747103485104099331/photo/1,https://twitter.com/dog_rates/status/747103485104099331/photo/1,https://twitter.com/dog_rates/status/747103485104099331/photo/1,https://twitter.com/dog_rates/status/747103485104099331/photo/1 1 https://twitter.com/dog_rates/status/709198395643068416/photo/1 1 https://twitter.com/dog_rates/status/864873206498414592/photo/1,https://twitter.com/dog_rates/status/864873206498414592/photo/1 1 https://twitter.com/dog_rates/status/826848821049180160/photo/1,https://twitter.com/dog_rates/status/826848821049180160/photo/1,https://twitter.com/dog_rates/status/826848821049180160/photo/1,https://twitter.com/dog_rates/status/826848821049180160/photo/1 1 https://twitter.com/dog_rates/status/701214700881756160/photo/1 1 https://twitter.com/dog_rates/status/753420520834629632/video/1 1 https://twitter.com/dog_rates/status/737445876994609152/photo/1 1 https://www.petfinder.com/petdetail/37334596,https://twitter.com/dog_rates/status/847157206088847362/photo/1,https://twitter.com/dog_rates/status/847157206088847362/photo/1 1 https://twitter.com/dog_rates/status/751538714308972544/photo/1,https://twitter.com/dog_rates/status/751538714308972544/photo/1,https://twitter.com/dog_rates/status/751538714308972544/photo/1 1 https://twitter.com/dog_rates/status/687460506001633280/photo/1 1 https://vine.co/v/i6iIrBwnTFI 1 https://twitter.com/dog_rates/status/760252756032651264/photo/1 1 https://twitter.com/dog_rates/status/677918531514703872/photo/1 1 https://twitter.com/dog_rates/status/680836378243002368/photo/1,https://twitter.com/dog_rates/status/680836378243002368/photo/1,https://twitter.com/dog_rates/status/680836378243002368/photo/1 1 https://twitter.com/dog_rates/status/710833117892898816/photo/1 1 https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1 1 https://twitter.com/dog_rates/status/689283819090870273/photo/1 1 https://twitter.com/dog_rates/status/688804835492233216/photo/1,https://twitter.com/dog_rates/status/688804835492233216/photo/1,https://twitter.com/dog_rates/status/688804835492233216/photo/1 1 https://twitter.com/dog_rates/status/676864501615042560/photo/1 1 https://twitter.com/dog_rates/status/742385895052087300/photo/1 1 https://twitter.com/dog_rates/status/731285275100512256/photo/1 1 https://twitter.com/dog_rates/status/668237644992782336/photo/1 1 https://twitter.com/dog_rates/status/778039087836069888/photo/1,https://twitter.com/dog_rates/status/778039087836069888/photo/1,https://twitter.com/dog_rates/status/778039087836069888/photo/1,https://twitter.com/dog_rates/status/778039087836069888/photo/1 1 https://twitter.com/dog_rates/status/714251586676113411/photo/1,https://twitter.com/dog_rates/status/714251586676113411/photo/1 1 https://twitter.com/dog_rates/status/681981167097122816/photo/1 1 https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1 1 https://twitter.com/dog_rates/status/682406705142087680/photo/1 1 https://twitter.com/dog_rates/status/667369227918143488/photo/1 1 https://twitter.com/dog_rates/status/882268110199369728/photo/1,https://twitter.com/dog_rates/status/882268110199369728/photo/1,https://twitter.com/dog_rates/status/882268110199369728/photo/1 1 https://twitter.com/dog_rates/status/856282028240666624/photo/1,https://twitter.com/dog_rates/status/856282028240666624/photo/1,https://twitter.com/dog_rates/status/856282028240666624/photo/1,https://twitter.com/dog_rates/status/856282028240666624/photo/1 1 https://twitter.com/dog_rates/status/828046555563323392/photo/1,https://twitter.com/dog_rates/status/828046555563323392/photo/1,https://twitter.com/dog_rates/status/828046555563323392/photo/1 1 https://twitter.com/dog_rates/status/679854723806179328/photo/1 1 https://twitter.com/dog_rates/status/758474966123810816/photo/1 1 https://twitter.com/dog_rates/status/876838120628539392/photo/1,https://twitter.com/dog_rates/status/876838120628539392/photo/1 1 https://twitter.com/dog_rates/status/674291837063053312/photo/1 1 https://twitter.com/dog_rates/status/679148763231985668/photo/1 1 https://twitter.com/dog_rates/status/667174963120574464/photo/1 1 https://twitter.com/dog_rates/status/739544079319588864/photo/1 1 https://twitter.com/dog_rates/status/813202720496779264/photo/1 1 https://twitter.com/dog_rates/status/852672615818899456/photo/1 1 https://twitter.com/dog_rates/status/667873844930215936/photo/1 1 https://twitter.com/dog_rates/status/877201837425926144/photo/1,https://twitter.com/dog_rates/status/877201837425926144/photo/1 1 https://twitter.com/dog_rates/status/668994913074286592/photo/1 1 https://twitter.com/dog_rates/status/675888385639251968/photo/1 1 https://twitter.com/dog_rates/status/668528771708952576/photo/1 1 https://twitter.com/dog_rates/status/857263160327368704/photo/1 1 https://vine.co/v/iY9Fr1I31U6 1 https://twitter.com/dog_rates/status/832998151111966721/photo/1,https://twitter.com/dog_rates/status/832998151111966721/photo/1 1 https://twitter.com/dog_rates/status/669603084620980224/photo/1 1 https://twitter.com/dog_rates/status/672245253877968896/photo/1 1 https://twitter.com/strange_animals/status/672108316018024452 1 https://twitter.com/dog_rates/status/729854734790754305/photo/1 1 https://twitter.com/dog_rates/status/669923323644657664/photo/1 1 https://twitter.com/dog_rates/status/848324959059550208/photo/1 1 https://twitter.com/dog_rates/status/853299958564483072/photo/1,https://twitter.com/dog_rates/status/853299958564483072/photo/1 1 https://twitter.com/dog_rates/status/889278841981685760/video/1 1 https://twitter.com/dog_rates/status/822462944365645825/photo/1,https://twitter.com/dog_rates/status/822462944365645825/photo/1,https://twitter.com/dog_rates/status/822462944365645825/photo/1,https://twitter.com/dog_rates/status/822462944365645825/photo/1 1 https://weratedogs.com/pages/about-us,https://weratedogs.com/pages/about-us 1 https://twitter.com/dog_rates/status/743222593470234624/photo/1 1 https://twitter.com/dog_rates/status/707693576495472641/photo/1 1 https://twitter.com/dog_rates/status/758828659922702336/photo/1 1 https://twitter.com/dog_rates/status/747461612269887489/photo/1 1 https://twitter.com/dog_rates/status/680130881361686529/photo/1 1 https://twitter.com/dog_rates/status/680934982542561280/photo/1 1 https://twitter.com/dog_rates/status/672267570918129665/photo/1 1 https://twitter.com/dog_rates/status/688211956440801280/video/1 1 https://twitter.com/dog_rates/status/836001077879255040/photo/1,https://twitter.com/dog_rates/status/836001077879255040/photo/1,https://twitter.com/dog_rates/status/836001077879255040/photo/1,https://twitter.com/dog_rates/status/836001077879255040/photo/1 1 https://twitter.com/dog_rates/status/695095422348574720/photo/1 1 https://twitter.com/dog_rates/status/710283270106132480/photo/1,https://twitter.com/dog_rates/status/710283270106132480/photo/1 1 https://twitter.com/dog_rates/status/680100725817409536/photo/1 1 https://vine.co/v/iqIZFtOxEMB 1 https://twitter.com/dog_rates/status/888917238123831296/photo/1 1 https://twitter.com/dog_rates/status/831552930092285952/photo/1 1 https://twitter.com/dog_rates/status/671528761649688577/photo/1 1 https://twitter.com/dog_rates/status/670792680469889025/photo/1 1 https://twitter.com/dog_rates/status/705442520700944385/photo/1 1 https://twitter.com/dog_rates/status/674767892831932416/photo/1 1 https://twitter.com/KennyFromDaBlok/status/837011344666812416/photo/1,https://twitter.com/KennyFromDaBlok/status/837011344666812416/photo/1 1 https://twitter.com/dog_rates/status/695409464418041856/photo/1 1 https://twitter.com/dog_rates/status/667509364010450944/photo/1 1 https://twitter.com/dog_rates/status/868880397819494401/photo/1,https://twitter.com/dog_rates/status/868880397819494401/photo/1 1 https://twitter.com/dog_rates/status/676588346097852417/photo/1 1 https://twitter.com/dog_rates/status/668645506898350081/photo/1 1 https://twitter.com/dog_rates/status/720340705894408192/photo/1 1 https://twitter.com/dog_rates/status/751583847268179968/photo/1 1 https://twitter.com/dog_rates/status/693095443459342336/photo/1 1 https://twitter.com/dog_rates/status/823581115634085888/photo/1 1 https://twitter.com/dog_rates/status/671151324042559489/photo/1 1 https://twitter.com/dog_rates/status/686386521809772549/photo/1 1 https://twitter.com/dog_rates/status/681679526984871937/photo/1 1 https://twitter.com/dog_rates/status/787397959788929025/photo/1 1 https://twitter.com/dog_rates/status/690360449368465409/photo/1 1 https://twitter.com/dog_rates/status/698907974262222848/photo/1,https://twitter.com/dog_rates/status/698907974262222848/photo/1,https://twitter.com/dog_rates/status/698907974262222848/photo/1 1 https://twitter.com/dog_rates/status/672594978741354496/photo/1 1 https://twitter.com/dog_rates/status/763103485927849985/photo/1,https://twitter.com/dog_rates/status/763103485927849985/photo/1 1 https://twitter.com/dog_rates/status/675334060156301312/photo/1,https://twitter.com/dog_rates/status/675334060156301312/photo/1 1 https://twitter.com/dog_rates/status/743210557239623680/photo/1 1 https://twitter.com/dog_rates/status/690690673629138944/photo/1 1 https://twitter.com/dog_rates/status/768596291618299904/photo/1 1 https://twitter.com/dog_rates/status/840370681858686976/photo/1 1 https://twitter.com/dog_rates/status/766069199026450432/photo/1 1 https://twitter.com/dog_rates/status/670093938074779648/photo/1 1 https://twitter.com/dog_rates/status/680913438424612864/photo/1 1 https://twitter.com/dog_rates/status/675109292475830276/photo/1 1 https://twitter.com/dog_rates/status/799757965289017345/photo/1,https://twitter.com/dog_rates/status/799757965289017345/photo/1,https://twitter.com/dog_rates/status/799757965289017345/photo/1,https://twitter.com/dog_rates/status/799757965289017345/photo/1 1 https://twitter.com/dog_rates/status/710272297844797440/photo/1 1 https://twitter.com/dog_rates/status/793180763617361921/photo/1 1 https://twitter.com/dog_rates/status/674632714662858753/photo/1 1 https://twitter.com/dog_rates/status/767884188863397888/photo/1,https://twitter.com/dog_rates/status/767884188863397888/photo/1,https://twitter.com/dog_rates/status/767884188863397888/photo/1,https://twitter.com/dog_rates/status/767884188863397888/photo/1 1 https://twitter.com/dog_rates/status/698262614669991936/photo/1 1 https://twitter.com/dog_rates/status/760641137271070720/photo/1 1 http://goo.gl/ArWZfi,https://twitter.com/dog_rates/status/709901256215666688/photo/1,https://twitter.com/dog_rates/status/709901256215666688/photo/1,https://twitter.com/dog_rates/status/709901256215666688/photo/1,https://twitter.com/dog_rates/status/709901256215666688/photo/1 1 https://twitter.com/dog_rates/status/703611486317502464/photo/1 1 https://twitter.com/dog_rates/status/672970152493887488/photo/1 1 https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1 1 https://twitter.com/dog_rates/status/791312159183634433/photo/1,https://twitter.com/dog_rates/status/791312159183634433/photo/1,https://twitter.com/dog_rates/status/791312159183634433/photo/1,https://twitter.com/dog_rates/status/791312159183634433/photo/1 1 https://twitter.com/dog_rates/status/832636094638288896/photo/1 1 https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1 1 https://twitter.com/dog_rates/status/686606069955735556/photo/1 1 https://vine.co/v/ijmv0PD0XXD 1 https://twitter.com/dog_rates/status/680206703334408192/photo/1 1 https://twitter.com/dog_rates/status/846514051647705089/photo/1,https://twitter.com/dog_rates/status/846514051647705089/photo/1,https://twitter.com/dog_rates/status/846514051647705089/photo/1 1 https://twitter.com/dog_rates/status/886053434075471873,https://twitter.com/dog_rates/status/886053434075471873 1 https://twitter.com/dog_rates/status/860276583193509888/photo/1 1 https://twitter.com/dog_rates/status/688894073864884227/photo/1 1 https://twitter.com/dog_rates/status/744234799360020481/video/1 1 https://twitter.com/dog_rates/status/668496999348633600/photo/1 1 https://twitter.com/dog_rates/status/886983233522544640/photo/1,https://twitter.com/dog_rates/status/886983233522544640/photo/1 1 https://twitter.com/dog_rates/status/745314880350101504/photo/1,https://twitter.com/dog_rates/status/745314880350101504/photo/1,https://twitter.com/dog_rates/status/745314880350101504/photo/1,https://twitter.com/dog_rates/status/745314880350101504/photo/1 1 https://twitter.com/dog_rates/status/824663926340194305/photo/1 1 https://twitter.com/dog_rates/status/808733504066486276/photo/1 1 https://twitter.com/dog_rates/status/699423671849451520/photo/1 1 https://twitter.com/dog_rates/status/692017291282812928/photo/1 1 https://twitter.com/dog_rates/status/815966073409433600/video/1 1 https://twitter.com/dog_rates/status/676263575653122048/photo/1 1 https://twitter.com/dog_rates/status/695446424020918272/photo/1 1 https://twitter.com/dog_rates/status/666273097616637952/photo/1 1 https://twitter.com/dog_rates/status/719332531645071360/photo/1 1 https://twitter.com/dog_rates/status/688789766343622656/photo/1 1 https://twitter.com/dog_rates/status/880935762899988482/photo/1 1 https://twitter.com/dog_rates/status/715680795826982913/photo/1,https://twitter.com/dog_rates/status/715680795826982913/photo/1,https://twitter.com/dog_rates/status/715680795826982913/photo/1 1 https://twitter.com/dog_rates/status/667534815156183040/photo/1 1 https://twitter.com/dog_rates/status/674051556661161984/photo/1 1 https://twitter.com/dog_rates/status/778748913645780993/photo/1 1 https://twitter.com/dog_rates/status/861288531465048066/video/1 1 https://twitter.com/dog_rates/status/677314812125323265/photo/1,https://twitter.com/dog_rates/status/677314812125323265/photo/1 1 https://twitter.com/dog_rates/status/681193455364796417/photo/1,https://twitter.com/dog_rates/status/681193455364796417/photo/1 1 https://twitter.com/jon_hill987/status/757597141099548672/photo/1,https://twitter.com/jon_hill987/status/757597141099548672/photo/1 1 https://twitter.com/dog_rates/status/802572683846291456/photo/1 1 https://twitter.com/dog_rates/status/795400264262053889/photo/1,https://twitter.com/dog_rates/status/795400264262053889/photo/1,https://twitter.com/dog_rates/status/795400264262053889/photo/1,https://twitter.com/dog_rates/status/795400264262053889/photo/1 1 https://twitter.com/dog_rates/status/765719909049503744/photo/1 1 https://twitter.com/dog_rates/status/674800520222154752/photo/1 1 https://twitter.com/dog_rates/status/883482846933004288/photo/1,https://twitter.com/dog_rates/status/883482846933004288/photo/1 1 https://twitter.com/dog_rates/status/759793422261743616/photo/1,https://twitter.com/dog_rates/status/759793422261743616/photo/1 1 https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1 1 https://twitter.com/KibaDva/status/838905980628819968/photo/1,https://twitter.com/KibaDva/status/838905980628819968/photo/1,https://twitter.com/KibaDva/status/838905980628819968/photo/1,https://twitter.com/KibaDva/status/838905980628819968/photo/1 1 https://twitter.com/dog_rates/status/674410619106390016/photo/1 1 https://twitter.com/dog_rates/status/679844490799091713/photo/1 1 https://twitter.com/dog_rates/status/728986383096946689/photo/1,https://twitter.com/dog_rates/status/728986383096946689/photo/1 1 https://twitter.com/dog_rates/status/667549055577362432/photo/1 1 https://twitter.com/dog_rates/status/697482927769255936/photo/1 1 https://twitter.com/dog_rates/status/704364645503647744/photo/1,https://twitter.com/dog_rates/status/704364645503647744/photo/1 1 https://twitter.com/dog_rates/status/760190180481531904/photo/1 1 https://twitter.com/dog_rates/status/697596423848730625/photo/1 1 https://twitter.com/dog_rates/status/770414278348247044/photo/1 1 Name: expanded_urls, dtype: int64
twitter_archive['rating_numerator'].value_counts()
12 558 11 464 10 461 13 351 9 158 8 102 7 55 14 54 5 37 6 32 3 19 4 17 1 9 2 9 420 2 0 2 15 2 75 2 80 1 20 1 24 1 26 1 44 1 50 1 60 1 165 1 84 1 88 1 144 1 182 1 143 1 666 1 960 1 1776 1 17 1 27 1 45 1 99 1 121 1 204 1 Name: rating_numerator, dtype: int64
twitter_archive['rating_denominator'].value_counts()
10 2333 11 3 50 3 80 2 20 2 2 1 16 1 40 1 70 1 15 1 90 1 110 1 120 1 130 1 150 1 170 1 7 1 0 1 Name: rating_denominator, dtype: int64
twitter_archive['name'].value_counts()
None 745 a 55 Charlie 12 Oliver 11 Cooper 11 Lucy 11 Lola 10 Penny 10 Tucker 10 Winston 9 Bo 9 Sadie 8 the 8 an 7 Bailey 7 Toby 7 Buddy 7 Daisy 7 Oscar 6 Dave 6 Rusty 6 Milo 6 Leo 6 Koda 6 Stanley 6 Bella 6 Jack 6 Jax 6 Scout 6 very 5 Bentley 5 Sunny 5 Chester 5 Sammy 5 Alfie 5 Phil 5 Gus 5 Louis 5 Finn 5 George 5 Oakley 5 Larry 5 Reggie 4 Sampson 4 Brody 4 Maggie 4 Walter 4 Sophie 4 Jerry 4 Loki 4 Archie 4 Scooter 4 Derek 4 Maddie 4 Carl 4 one 4 just 4 Boomer 4 Reginald 4 Bruce 4 Riley 4 Clark 4 Jeffrey 4 Clarence 4 Gary 4 Cassie 4 Gerald 4 Maximus 4 Dexter 4 Shadow 4 Moose 4 Luna 4 Winnie 4 Hank 4 Beau 4 quite 4 Ruby 4 Bear 4 Chip 4 Duke 4 Doug 3 Coco 3 Frankie 3 Arnie 3 Klevin 3 Samson 3 Lorenzo 3 Wyatt 3 Nala 3 Rory 3 Lily 3 Rosie 3 Vincent 3 Waffles 3 Zeke 3 Kyle 3 Reese 3 Gizmo 3 Zoey 3 Peaches 3 Max 3 Paisley 3 Otis 3 Malcolm 3 Wallace 3 Jimothy 3 Olive 3 Calvin 3 Earl 3 Sebastian 3 Steven 3 Colby 3 Ted 3 Mia 3 Louie 3 Wilson 3 Ellie 3 Axel 2 Rizzy 2 Chelsea 2 Rubio 2 Jamesy 2 Jesse 2 Smokey 2 Finley 2 Leela 2 Luca 2 Logan 2 Roosevelt 2 Hercules 2 Butter 2 Lennon 2 Layla 2 Bernie 2 Lincoln 2 Ash 2 Sam 2 Fizz 2 Atlas 2 Alice 2 Oliviér 2 Jimison 2 Titan 2 Tyrone 2 Kirby 2 Kyro 2 Rocky 2 Romeo 2 Cody 2 Franklin 2 Anakin 2 Herm 2 Bell 2 Maxaroni 2 Meyer 2 Happy 2 Pipsy 2 Gromit 2 Herald 2 Bob 2 Opal 2 Baxter 2 Kevin 2 Fred 2 Keurig 2 Sarge 2 Astrid 2 Jackson 2 Eve 2 Brad 2 Lou 2 Raymond 2 Churlie 2 Levi 2 Dakota 2 Dash 2 Wally 2 Kreg 2 Bungalo 2 Philbert 2 Emmy 2 Percy 2 Watson 2 Chuckles 2 Piper 2 Cash 2 Aspen 2 Sugar 2 Neptune 2 Misty 2 not 2 Juno 2 Olivia 2 Trooper 2 Mister 2 Elliot 2 Moe 2 actually 2 Nelly 2 Rocco 2 Belle 2 Marley 2 Chipson 2 Linda 2 Betty 2 Albus 2 Moreton 2 Jeph 2 Sierra 2 Ken 2 Patrick 2 Bisquick 2 Benedict 2 Remington 2 Fiona 2 Kenneth 2 Crystal 2 Nollie 2 Thumas 2 Sansa 2 Doc 2 Penelope 2 Ollie 2 Phred 2 Django 2 Griffin 2 Stubert 2 Balto 2 Kilo 2 Atticus 2 Klein 2 Eli 2 Solomon 2 Phineas 2 Jiminy 2 Kenny 2 Shaggy 2 Lenny 2 Charles 2 Lilly 2 Chompsky 2 Albert 2 Terrance 2 Paull 2 Coops 2 Hobbes 2 Pablo 2 Quinn 2 Ozzy 2 Ava 2 Bubbles 2 Terry 2 Cupcake 2 Pippa 2 Harper 2 CeCe 2 Kreggory 2 Benji 2 Rufus 2 Gabe 2 Oshie 2 Flávio 2 Yogi 2 Chet 2 Pickles 2 Baloo 2 Blitz 2 Frank 2 mad 2 Carly 2 Stephan 2 Sandy 2 Timison 2 Mattie 2 Davey 2 Calbert 2 Cali 2 Herschel 2 getting 2 Harold 2 Indie 2 Seamus 2 Curtis 2 Theodore 2 Panda 2 Abby 2 Hammond 2 Dawn 2 Canela 2 Gidget 2 Hunter 2 Odie 2 Tyr 2 Hurley 2 Keith 2 Laika 1 Mojo 1 Acro 1 Norman 1 Wafer 1 Sage 1 Harvey 1 Dale 1 Naphaniel 1 Kirk 1 Maya 1 Remy 1 Ralphus 1 Snicku 1 Stu 1 Hermione 1 Maxwell 1 Cleopatricia 1 Suki 1 Oddie 1 Opie 1 Odin 1 Fabio 1 Divine 1 Spencer 1 Iggy 1 Bruno 1 Jordy 1 Jiminus 1 Corey 1 Brutus 1 Kaiya 1 Geoff 1 Donny 1 Jangle 1 Spark 1 Ike 1 Dug 1 Alexander 1 Barry 1 Lambeau 1 Andy 1 Remus 1 Dwight 1 Superpup 1 Filup 1 Moofasa 1 Iroh 1 DonDon 1 Clarkus 1 Dudley 1 Spanky 1 Marty 1 Tedrick 1 Mollie 1 JD 1 Blakely 1 Maude 1 Yoda 1 Jett 1 Josep 1 Zeus 1 Charleson 1 Schnitzel 1 Storkson 1 Miguel 1 Gunner 1 Crimson 1 Ester 1 Stefan 1 Thor 1 Ricky 1 Blipson 1 Tycho 1 Gustaf 1 Amber 1 Beckham 1 Ebby 1 Kellogg 1 Genevieve 1 Benny 1 Tupawc 1 Harrison 1 Franq 1 Binky 1 Anna 1 Tove 1 Halo 1 Edmund 1 Fynn 1 Dobby 1 Shelby 1 Griswold 1 Devón 1 Clarq 1 Kona 1 Jennifur 1 Pip 1 Buckley 1 Meera 1 Wiggles 1 Bert 1 Siba 1 Meatball 1 Kingsley 1 Stella 1 Chef 1 Keet 1 Strider 1 Skittles 1 Perry 1 Daniel 1 Bradlay 1 Goose 1 Zoe 1 such 1 Andru 1 my 1 Pumpkin 1 Amy 1 Mac 1 Ulysses 1 Gilbert 1 Ralphson 1 Chesney 1 Ace 1 Fletcher 1 Harry 1 Charl 1 Jim 1 Frönq 1 Kallie 1 Striker 1 Lance 1 Chase 1 Godzilla 1 Snoopy 1 Orion 1 Link 1 Jeffri 1 Julius 1 Snoop 1 Ralpher 1 Duchess 1 Shakespeare 1 Poppy 1 Dante 1 Dewey 1 Kollin 1 Sky 1 Mookie 1 light 1 Willie 1 Einstein 1 Akumi 1 Blue 1 Shooter 1 Jay 1 Mona 1 Leonidas 1 Toffee 1 Ralphie 1 Cilantro 1 Brandonald 1 infuriating 1 old 1 Ziva 1 Chubbs 1 Amélie 1 Michelangelope 1 Tanner 1 Lili 1 Dietrich 1 Jimbo 1 Combo 1 Kathmandu 1 Monster 1 Sundance 1 Christoper 1 Pavlov 1 Dunkin 1 Stewie 1 Mimosa 1 Tater 1 Vince 1 Swagger 1 Pilot 1 Eevee 1 Sonny 1 Berb 1 Sobe 1 Jed 1 Bronte 1 Lassie 1 Jarod 1 Kayla 1 Brian 1 Sailer 1 Crouton 1 Hazel 1 Edd 1 Peanut 1 Theo 1 Nigel 1 Lilli 1 Kuyu 1 Arnold 1 Carter 1 Aja 1 Timofy 1 Callie 1 Eriq 1 Shawwn 1 Humphrey 1 Tilly 1 Emmie 1 Bobby 1 Tayzie 1 Barney 1 Ralph 1 Zooey 1 BeBe 1 Arya 1 Longfellow 1 Kramer 1 Ronnie 1 Hubertson 1 Vinscent 1 Cal 1 Ralf 1 Willem 1 Mary 1 Simba 1 Aldrick 1 Gabby 1 Grady 1 Tito 1 Eugene 1 Beemo 1 Barclay 1 Shikha 1 Henry 1 Malikai 1 Gustav 1 Kloey 1 Tonks 1 Mauve 1 Carll 1 Pluto 1 Timmy 1 Harlso 1 Grizzwald 1 Lupe 1 Torque 1 Izzy 1 Bubba 1 Nida 1 Cheryl 1 Emanuel 1 Marvin 1 Bloop 1 Jomathan 1 this 1 Nimbus 1 Jameson 1 Billy 1 Ito 1 Teddy 1 Biden 1 Lipton 1 Loomis 1 Mitch 1 Damon 1 Laela 1 Brockly 1 Herb 1 Taco 1 Deacon 1 Ginger 1 Antony 1 Stuart 1 Lulu 1 Tripp 1 Autumn 1 Beebop 1 Jebberson 1 Bluebert 1 Rose 1 General 1 Zuzu 1 Jazz 1 Fiji 1 Mo 1 unacceptable 1 Kawhi 1 Jarvis 1 Gerbald 1 Rumpole 1 Mark 1 Brandi 1 Bayley 1 Cannon 1 Rupert 1 Kanu 1 Philippe 1 Livvie 1 Timber 1 Sunshine 1 Noosh 1 Hamrick 1 Ferg 1 DayZ 1 Clybe 1 Rover 1 Tassy 1 Reptar 1 Linus 1 Mabel 1 Willy 1 Rumble 1 Major 1 Clyde 1 River 1 Erik 1 Rontu 1 Farfle 1 Ivar 1 Hanz 1 Tedders 1 Trip 1 Mason 1 Jonah 1 Jersey 1 Chevy 1 Batdog 1 Coleman 1 Cedrick 1 Sandra 1 Kial 1 Juckson 1 Fido 1 Zara 1 Berkeley 1 Travis 1 Joshwa 1 Nugget 1 Mosby 1 Blanket 1 Birf 1 Smiley 1 Darrel 1 Stormy 1 Ralphy 1 Rodman 1 Obie 1 Pupcasso 1 Rorie 1 Bruiser 1 Furzey 1 Boston 1 Gordon 1 Evy 1 Boots 1 Staniel 1 Shiloh 1 Geno 1 Tug 1 Sully 1 Vinnie 1 Skye 1 Enchilada 1 Tino 1 Kaia 1 Rueben 1 Jeffrie 1 Darla 1 Lizzie 1 Chuq 1 Dotsy 1 Cecil 1 Molly 1 Bauer 1 Sparky 1 Kevon 1 Ben 1 Terrenth 1 Chloe 1 Bookstore 1 Alejandro 1 Harnold 1 Olaf 1 Winifred 1 Emma 1 Venti 1 Samsom 1 Jaycob 1 Dutch 1 Reagan 1 Heinrich 1 Fillup 1 Sweet 1 Horace 1 Zeek 1 Yukon 1 Pherb 1 Kane 1 Lugan 1 Covach 1 Chuck 1 Steve 1 Pippin 1 Aiden 1 Chaz 1 Pinot 1 all 1 Pepper 1 by 1 Petrick 1 Rolf 1 Brudge 1 Saydee 1 Comet 1 Rodney 1 Robin 1 Coopson 1 Stephanus 1 Jo 1 Brownie 1 Luther 1 Eazy 1 Tyrus 1 Ridley 1 Trevith 1 Cora 1 Scott 1 incredibly 1 Burt 1 Rilo 1 Bones 1 Julio 1 Jaspers 1 Patch 1 Bode 1 Arlen 1 Millie 1 Dex 1 Chadrick 1 Augie 1 Mack 1 Alexanderson 1 Crumpet 1 Nico 1 Adele 1 Mya 1 Dot 1 Liam 1 Tess 1 Howie 1 Taz 1 Tuck 1 Champ 1 Finnegus 1 Billl 1 Beya 1 Aqua 1 Maks 1 Bertson 1 Bilbo 1 Trigger 1 Vixen 1 Bradley 1 Butters 1 Dido 1 Shadoe 1 Rudy 1 Kota 1 Severus 1 Bobbay 1 Bobble 1 Oreo 1 Grizzie 1 Rascal 1 Brooks 1 Hector 1 Holly 1 Chesterson 1 Rey 1 Kara 1 Georgie 1 Doobert 1 Scruffers 1 Lenox 1 Florence 1 Rinna 1 Tom 1 Ed 1 Tommy 1 Jareld 1 Randall 1 Lillie 1 Dixie 1 Jeb 1 Traviss 1 Richie 1 Angel 1 Bodie 1 Marlee 1 Caryl 1 Sprinkles 1 Jackie 1 Kobe 1 Flash 1 life 1 Rooney 1 Sweets 1 Maisey 1 Monty 1 Colin 1 Goliath 1 Blu 1 Karll 1 Banditt 1 Ronduh 1 Kendall 1 Jessifer 1 Rhino 1 Brat 1 Leonard 1 Kody 1 Apollo 1 Carper 1 Roscoe 1 Lucky 1 space 1 Tango 1 Tiger 1 Glacier 1 Flurpson 1 Ember 1 Jessiga 1 Mairi 1 Lorelei 1 Eleanor 1 Strudel 1 Tobi 1 Cermet 1 Asher 1 Karl 1 Alfy 1 Godi 1 Willow 1 Anthony 1 Brandy 1 Bloo 1 Gert 1 Jerome 1 Tuco 1 Pubert 1 Monkey 1 Bowie 1 Crawford 1 Todo 1 Ron 1 Cupid 1 Snickers 1 Karma 1 Wesley 1 Noah 1 Walker 1 Mike 1 Cheesy 1 Lacy 1 Derby 1 Sora 1 Stark 1 Huck 1 Rufio 1 Creg 1 Sojourner 1 Mingus 1 Mutt 1 Sprout 1 Ashleigh 1 Durg 1 Socks 1 Arlo 1 Newt 1 O 1 Jazzy 1 Duddles 1 Banjo 1 Brady 1 Puff 1 Fwed 1 Diogi 1 Pawnd 1 Dook 1 Alf 1 Al 1 Rizzo 1 Lilah 1 Ambrose 1 Wishes 1 Milky 1 Schnozz 1 Dallas 1 Marq 1 Miley 1 William 1 Napolean 1 Danny 1 Hall 1 officially 1 Craig 1 Rambo 1 Grizz 1 Kenzie 1 Hero 1 Ralphé 1 Obi 1 Jeremy 1 Gin 1 Margo 1 Sephie 1 Claude 1 Carbon 1 Edgar 1 Shnuggles 1 Lolo 1 Grey 1 Tebow 1 Ozzie 1 his 1 Freddery 1 Kulet 1 Katie 1 Pete 1 Bobb 1 Glenn 1 Joey 1 Raphael 1 Darby 1 Sid 1 Cuddles 1 Buddah 1 Jockson 1 Skittle 1 Ole 1 Koko 1 Pancake 1 Gòrdón 1 Dylan 1 Huxley 1 Ruffles 1 Tessa 1 Lucia 1 Baron 1 Bonaparte 1 Clifford 1 Sailor 1 Aubie 1 Murphy 1 Name: name, dtype: int64
twitter_archive.loc[twitter_archive['name'].str.isupper()]
# check the names which are in upper case
| tweet_id | in_reply_to_status_id | in_reply_to_user_id | timestamp | source | text | retweeted_status_id | retweeted_status_user_id | retweeted_status_timestamp | expanded_urls | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 775 | 776201521193218049 | NaN | NaN | 2016-09-14 23:30:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is O'Malley. That is how he sleeps. Doesn't care what you think about it. 10/10 comfy af https://t.co/Pq150LeRaC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/776201521193218049/photo/1 | 10 | 10 | O | None | None | None | None |
| 2041 | 671542985629241344 | NaN | NaN | 2015-12-01 04:14:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is JD (stands for "just dog"). He's like Airbud but with trading card games instead of sports. 10/10 much skill https://t.co/zzueJV9jCF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671542985629241344/photo/1 | 10 | 10 | JD | None | None | None | None |
twitter_archive.loc[twitter_archive['name'].str.islower()]
# check the names which are in lower case
| tweet_id | in_reply_to_status_id | in_reply_to_user_id | timestamp | source | text | retweeted_status_id | retweeted_status_user_id | retweeted_status_timestamp | expanded_urls | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 22 | 887517139158093824 | NaN | NaN | 2017-07-19 03:39:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I've yet to rate a Venezuelan Hover Wiener. This is such an honor. 14/10 paw-inspiring af (IG: roxy.thedoxy) https://t.co/20VrLAA8ba | NaN | NaN | NaN | https://twitter.com/dog_rates/status/887517139158093824/video/1 | 14 | 10 | such | None | None | None | None |
| 56 | 881536004380872706 | NaN | NaN | 2017-07-02 15:32:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is a pupper approaching maximum borkdrive. Zooming at never before seen speeds. 14/10 paw-inspiring af \n(IG: puffie_the_chow) https://t.co/ghXBIIeQZF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/881536004380872706/video/1 | 14 | 10 | a | None | None | pupper | None |
| 118 | 869988702071779329 | NaN | NaN | 2017-05-31 18:47:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: We only rate dogs. This is quite clearly a smol broken polar bear. We'd appreciate if you only send dogs. Thank you... 12/10… | 8.591970e+17 | 4.196984e+09 | 2017-05-02 00:04:57 +0000 | https://twitter.com/dog_rates/status/859196978902773760/video/1 | 12 | 10 | quite | None | None | None | None |
| 169 | 859196978902773760 | NaN | NaN | 2017-05-02 00:04:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. This is quite clearly a smol broken polar bear. We'd appreciate if you only send dogs. Thank you... 12/10 https://t.co/g2nSyGenG9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/859196978902773760/video/1 | 12 | 10 | quite | None | None | None | None |
| 193 | 855459453768019968 | NaN | NaN | 2017-04-21 16:33:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Guys, we only rate dogs. This is quite clearly a bulbasaur. Please only send dogs. Thank you... 12/10 human used pet, it's super effective https://t.co/Xc7uj1C64x | NaN | NaN | NaN | https://twitter.com/dog_rates/status/855459453768019968/photo/1,https://twitter.com/dog_rates/status/855459453768019968/photo/1 | 12 | 10 | quite | None | None | None | None |
| 335 | 832645525019123713 | NaN | NaN | 2017-02-17 17:38:57 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | There's going to be a dog terminal at JFK Airport. This is not a drill. 10/10 \nhttps://t.co/dp5h9bCwU7 | NaN | NaN | NaN | http://us.blastingnews.com/news/2017/02/jfk-announces-its-first-ever-ark-oasis-animal-terminal-001480161.html?sbdht=_pM1QUzk3wsdTxcmMoRPV7FWYYlsNKcFRcYSY7OmeHnOXA4NtUM6PLQ2_ | 10 | 10 | not | None | None | None | None |
| 369 | 828650029636317184 | NaN | NaN | 2017-02-06 17:02:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Occasionally, we're sent fantastic stories. This is one of them. 14/10 for Grace https://t.co/bZ4axuH6OK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828650029636317184/photo/1,https://twitter.com/dog_rates/status/828650029636317184/photo/1,https://twitter.com/dog_rates/status/828650029636317184/photo/1 | 14 | 10 | one | None | None | None | None |
| 542 | 806219024703037440 | NaN | NaN | 2016-12-06 19:29:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Please stop sending in non-canines like this Freudian Poof Lion. This is incredibly frustrating... 11/10 https://t.co/IZidSrBvhi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/806219024703037440/photo/1 | 11 | 10 | incredibly | None | None | None | None |
| 649 | 792913359805018113 | NaN | NaN | 2016-10-31 02:17:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is a perfect example of someone who has their priorities in order. 13/10 for both owner and Forrest https://t.co/LRyMrU7Wfq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1 | 13 | 10 | a | None | None | None | None |
| 682 | 788552643979468800 | NaN | NaN | 2016-10-19 01:29:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Say hello to mad pupper. You know what you did. 13/10 would pet until no longer furustrated https://t.co/u1ulQ5heLX | 7.363926e+17 | 4.196984e+09 | 2016-05-28 03:04:00 +0000 | https://vine.co/v/iEggaEOiLO3,https://vine.co/v/iEggaEOiLO3 | 13 | 10 | mad | None | None | pupper | None |
| 759 | 778396591732486144 | NaN | NaN | 2016-09-21 00:53:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is an East African Chalupa Seal. We only rate dogs. Please only send in dogs. Thank you... 10/10 https://t.co/iHe6liLwWR | 7.030419e+17 | 4.196984e+09 | 2016-02-26 02:20:37 +0000 | https://twitter.com/dog_rates/status/703041949650034688/photo/1,https://twitter.com/dog_rates/status/703041949650034688/photo/1 | 10 | 10 | an | None | None | None | None |
| 773 | 776249906839351296 | NaN | NaN | 2016-09-15 02:42:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: We only rate dogs. Pls stop sending in non-canines like this Mongolian grass snake. This is very frustrating. 11/10 https://… | 7.007478e+17 | 4.196984e+09 | 2016-02-19 18:24:26 +0000 | https://twitter.com/dog_rates/status/700747788515020802/photo/1 | 11 | 10 | very | None | None | None | None |
| 801 | 772581559778025472 | NaN | NaN | 2016-09-04 23:46:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Guys this is getting so out of hand. We only rate dogs. This is a Galapagos Speed Panda. Pls only send dogs... 10/10 https://t.co/8lpAGaZRFn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772581559778025472/photo/1,https://twitter.com/dog_rates/status/772581559778025472/photo/1,https://twitter.com/dog_rates/status/772581559778025472/photo/1 | 10 | 10 | a | None | None | None | None |
| 819 | 770655142660169732 | NaN | NaN | 2016-08-30 16:11:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Pls stop sending in non-canines like this Arctic Floof Kangaroo. This is very frustrating. 11/10 https://t.co/qlUDuPoE3d | NaN | NaN | NaN | https://twitter.com/dog_rates/status/770655142660169732/photo/1 | 11 | 10 | very | None | None | None | None |
| 822 | 770093767776997377 | NaN | NaN | 2016-08-29 03:00:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is just downright precious af. 12/10 for both pupper and doggo https://t.co/o5J479bZUC | 7.410673e+17 | 4.196984e+09 | 2016-06-10 00:39:48 +0000 | https://twitter.com/dog_rates/status/741067306818797568/photo/1,https://twitter.com/dog_rates/status/741067306818797568/photo/1 | 12 | 10 | just | doggo | None | pupper | None |
| 852 | 765395769549590528 | NaN | NaN | 2016-08-16 03:52:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is my dog. Her name is Zoey. She knows I've been rating other dogs. She's not happy. 13/10 no bias at all https://t.co/ep1NkYoiwB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/765395769549590528/photo/1 | 13 | 10 | my | None | None | None | None |
| 924 | 755206590534418437 | NaN | NaN | 2016-07-19 01:04:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is one of the most inspirational stories I've ever come across. I have no words. 14/10 for both doggo and owner https://t.co/I5ld3eKD5k | NaN | NaN | NaN | https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1 | 14 | 10 | one | doggo | None | None | None |
| 988 | 748977405889503236 | NaN | NaN | 2016-07-01 20:31:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | What jokester sent in a pic without a dog in it? This is not @rock_rates. This is @dog_rates. Thank you ...10/10 https://t.co/nDPaYHrtNX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748977405889503236/photo/1 | 10 | 10 | not | None | None | None | None |
| 992 | 748692773788876800 | NaN | NaN | 2016-07-01 01:40:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | That is Quizno. This is his beach. He does not tolerate human shenanigans on his beach. 10/10 reclaim ur land doggo https://t.co/vdr7DaRSa7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748692773788876800/photo/1 | 10 | 10 | his | doggo | None | None | None |
| 993 | 748575535303884801 | NaN | NaN | 2016-06-30 17:54:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is one of the most reckless puppers I've ever seen. How she got a license in the first place is beyond me. 6/10 https://t.co/z5bAdtn9kd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748575535303884801/photo/1 | 6 | 10 | one | None | None | None | None |
| 1002 | 747885874273214464 | NaN | NaN | 2016-06-28 20:14:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a mighty rare blue-tailed hammer sherk. Human almost lost a limb trying to take these. Be careful guys. 8/10 https://t.co/TGenMeXreW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747885874273214464/photo/1,https://twitter.com/dog_rates/status/747885874273214464/photo/1 | 8 | 10 | a | None | None | None | None |
| 1004 | 747816857231626240 | NaN | NaN | 2016-06-28 15:40:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Viewer discretion is advised. This is a terrible attack in progress. Not even in water (tragic af). 4/10 bad sherk https://t.co/L3U0j14N5R | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747816857231626240/photo/1 | 4 | 10 | a | None | None | None | None |
| 1017 | 746872823977771008 | NaN | NaN | 2016-06-26 01:08:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a carrot. We only rate dogs. Please only send in dogs. You all really should know this by now ...11/10 https://t.co/9e48aPrBm2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746872823977771008/photo/1,https://twitter.com/dog_rates/status/746872823977771008/photo/1 | 11 | 10 | a | None | None | None | None |
| 1025 | 746369468511756288 | NaN | NaN | 2016-06-24 15:48:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is an Iraqi Speed Kangaroo. It is not a dog. Please only send in dogs. I'm very angry with all of you ...9/10 https://t.co/5qpBTTpgUt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746369468511756288/photo/1 | 9 | 10 | an | None | None | None | None |
| 1031 | 745422732645535745 | NaN | NaN | 2016-06-22 01:06:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Pls stop sending in non-canines like this Jamaican Flop Seal. This is very very frustrating. 9/10 https://t.co/nc53zEN0hZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/745422732645535745/photo/1 | 9 | 10 | very | None | None | None | None |
| 1040 | 744223424764059648 | NaN | NaN | 2016-06-18 17:41:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is actually a pupper and I'd pet it so well. 12/10\nhttps://t.co/RNqS7C4Y4N | NaN | NaN | NaN | https://twitter.com/strange_animals/status/672108316018024452 | 12 | 10 | actually | None | None | pupper | None |
| 1049 | 743222593470234624 | NaN | NaN | 2016-06-15 23:24:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a very rare Great Alaskan Bush Pupper. Hard to stumble upon without spooking. 12/10 would pet passionately https://t.co/xOBKCdpzaa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743222593470234624/photo/1 | 12 | 10 | a | None | None | pupper | None |
| 1063 | 741067306818797568 | NaN | NaN | 2016-06-10 00:39:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is just downright precious af. 12/10 for both pupper and doggo https://t.co/o5J479bZUC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/741067306818797568/photo/1 | 12 | 10 | just | doggo | None | pupper | None |
| 1071 | 740214038584557568 | NaN | NaN | 2016-06-07 16:09:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is getting incredibly frustrating. This is a Mexican Golden Beaver. We only rate dogs. Only send dogs ...10/10 https://t.co/0yolOOyD3X | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740214038584557568/photo/1 | 10 | 10 | getting | None | None | None | None |
| 1095 | 736392552031657984 | NaN | NaN | 2016-05-28 03:04:00 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Say hello to mad pupper. You know what you did. 13/10 would pet until no longer furustrated https://t.co/u1ulQ5heLX | NaN | NaN | NaN | https://vine.co/v/iEggaEOiLO3 | 13 | 10 | mad | None | None | pupper | None |
| 1097 | 736225175608430592 | NaN | NaN | 2016-05-27 15:58:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Please stop sending in non-canines like this Alaskan Flop Turtle. This is very frustrating. 10/10 https://t.co/qXteK6Atxc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/736225175608430592/photo/1 | 10 | 10 | very | None | None | None | None |
| 1120 | 731156023742988288 | NaN | NaN | 2016-05-13 16:15:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to this unbelievably well behaved squad of doggos. 204/170 would try to pet all at once https://t.co/yGQI3He3xv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/731156023742988288/photo/1 | 204 | 170 | this | None | None | None | None |
| 1121 | 730924654643314689 | NaN | NaN | 2016-05-13 00:56:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Pls stop sending non-canines like this Bulgarian Eyeless Porch Bear. This is unacceptable... 9/10 https://t.co/2yctWAUZ3Z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/730924654643314689/photo/1 | 9 | 10 | unacceptable | None | None | None | None |
| 1138 | 728035342121635841 | NaN | NaN | 2016-05-05 01:35:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is all I want in my life. 12/10 for super sleepy pupper https://t.co/4RlLA5ObMh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728035342121635841/photo/1,https://twitter.com/dog_rates/status/728035342121635841/photo/1 | 12 | 10 | all | None | None | pupper | None |
| 1193 | 717537687239008257 | NaN | NaN | 2016-04-06 02:21:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | People please. This is a Deadly Mediterranean Plop T-Rex. We only rate dogs. Only send in dogs. Thanks you... 11/10 https://t.co/2ATDsgHD4n | NaN | NaN | NaN | https://twitter.com/dog_rates/status/717537687239008257/photo/1 | 11 | 10 | a | None | None | None | None |
| 1206 | 715758151270801409 | NaN | NaN | 2016-04-01 04:30:16 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is old now but it's absolutely heckin fantastic and I can't not share it with you all. 13/10 https://t.co/wJX74TSgzP | NaN | NaN | NaN | https://vine.co/v/hYdLVKDpAFu | 13 | 10 | old | None | None | None | None |
| 1207 | 715733265223708672 | NaN | NaN | 2016-04-01 02:51:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a taco. We only rate dogs. Please only send in dogs. Dogs are what we rate. Not tacos. Thank you... 10/10 https://t.co/cxl6xGY8B9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715733265223708672/photo/1 | 10 | 10 | a | None | None | None | None |
| 1259 | 710272297844797440 | NaN | NaN | 2016-03-17 01:11:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We 👏🏻 only 👏🏻 rate 👏🏻 dogs. Pls stop sending in non-canines like this Dutch Panda Worm. This is infuriating. 11/10 https://t.co/odfLzBonG2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710272297844797440/photo/1 | 11 | 10 | infuriating | None | None | None | None |
| 1340 | 704859558691414016 | NaN | NaN | 2016-03-02 02:43:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is a heartbreaking scene of an incredible pupper being laid to rest. 10/10 RIP pupper https://t.co/81mvJ0rGRu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704859558691414016/photo/1 | 10 | 10 | a | None | None | pupper | None |
| 1351 | 704054845121142784 | NaN | NaN | 2016-02-28 21:25:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is a whole flock of puppers. 60/50 I'll take the lot https://t.co/9dpcw6MdWa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704054845121142784/photo/1 | 60 | 50 | a | None | None | None | None |
| 1361 | 703079050210877440 | NaN | NaN | 2016-02-26 04:48:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Butternut Cumberfloof. It's not windy they just look like that. 11/10 back at it again with the red socks https://t.co/hMjzhdUHaW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703079050210877440/photo/1,https://twitter.com/dog_rates/status/703079050210877440/photo/1 | 11 | 10 | a | None | None | None | None |
| 1362 | 703041949650034688 | NaN | NaN | 2016-02-26 02:20:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is an East African Chalupa Seal. We only rate dogs. Please only send in dogs. Thank you... 10/10 https://t.co/iHe6liLwWR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703041949650034688/photo/1 | 10 | 10 | an | None | None | None | None |
| 1368 | 702539513671897089 | NaN | NaN | 2016-02-24 17:04:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Wild Tuscan Poofwiggle. Careful not to startle. Rare tongue slip. One eye magical. 12/10 would def pet https://t.co/4EnShAQjv6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702539513671897089/photo/1,https://twitter.com/dog_rates/status/702539513671897089/photo/1,https://twitter.com/dog_rates/status/702539513671897089/photo/1 | 12 | 10 | a | None | None | None | None |
| 1382 | 700864154249383937 | NaN | NaN | 2016-02-20 02:06:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Pupper is a present to world. Here is a bow for pupper." 12/10 precious as hell https://t.co/ItSsE92gCW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700864154249383937/photo/1 | 12 | 10 | a | None | None | pupper | None |
| 1385 | 700747788515020802 | NaN | NaN | 2016-02-19 18:24:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Pls stop sending in non-canines like this Mongolian grass snake. This is very frustrating. 11/10 https://t.co/22x9SbCYCU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700747788515020802/photo/1 | 11 | 10 | very | None | None | None | None |
| 1435 | 697259378236399616 | NaN | NaN | 2016-02-10 03:22:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Please stop sending in saber-toothed tigers. This is getting ridiculous. We only rate dogs.\n...8/10 https://t.co/iAeQNueou8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697259378236399616/photo/1 | 8 | 10 | getting | None | None | None | None |
| 1457 | 695095422348574720 | NaN | NaN | 2016-02-04 04:03:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is just a beautiful pupper good shit evolution. 12/10 https://t.co/2L8pI0Z2Ib | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695095422348574720/photo/1 | 12 | 10 | just | None | None | pupper | None |
| 1499 | 692187005137076224 | NaN | NaN | 2016-01-27 03:26:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a rare Arctic Wubberfloof. Unamused by the happenings. No longer has the appetites. 12/10 would totally hug https://t.co/krvbacIX0N | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692187005137076224/photo/1,https://twitter.com/dog_rates/status/692187005137076224/photo/1,https://twitter.com/dog_rates/status/692187005137076224/photo/1 | 12 | 10 | a | None | None | None | None |
| 1527 | 690360449368465409 | NaN | NaN | 2016-01-22 02:28:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Stop sending in lobsters. This is the final warning. We only rate dogs. Thank you... 9/10 https://t.co/B9ZXXKJYNx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690360449368465409/photo/1 | 9 | 10 | the | None | None | None | None |
| 1603 | 685943807276412928 | NaN | NaN | 2016-01-09 21:58:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is the newly formed pupper a capella group. They're just starting out but I see tons of potential. 8/10 for all https://t.co/wbAcvFoNtn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685943807276412928/video/1 | 8 | 10 | the | None | None | pupper | None |
| 1693 | 681297372102656000 | NaN | NaN | 2015-12-28 02:15:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is actually a lion. We only rate dogs. For the last time please only send dogs. Thank u.\n12/10 would still pet https://t.co/Pp26dMQxap | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681297372102656000/photo/1 | 12 | 10 | actually | None | None | None | None |
| 1724 | 680085611152338944 | NaN | NaN | 2015-12-24 18:00:19 +0000 | <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> | This is by far the most coordinated series of pictures I was sent. Downright impressive in every way. 12/10 for all https://t.co/etzLo3sdZE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680085611152338944/photo/1,https://twitter.com/dog_rates/status/680085611152338944/photo/1,https://twitter.com/dog_rates/status/680085611152338944/photo/1 | 12 | 10 | by | None | None | None | None |
| 1737 | 679530280114372609 | NaN | NaN | 2015-12-23 05:13:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Guys this really needs to stop. We've been over this way too many times. This is a giraffe. We only rate dogs.. 7/10 https://t.co/yavgkHYPOC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679530280114372609/photo/1 | 7 | 10 | a | None | None | None | None |
| 1747 | 679111216690831360 | NaN | NaN | 2015-12-22 01:28:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is officially the greatest yawn of all time. 12/10 https://t.co/4R0Cc0sLVE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679111216690831360/video/1 | 12 | 10 | officially | None | None | None | None |
| 1785 | 677644091929329666 | NaN | NaN | 2015-12-18 00:18:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a dog swinging. I really enjoyed it so I hope you all do as well. 11/10 https://t.co/Ozo9KHTRND | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677644091929329666/video/1 | 11 | 10 | a | None | None | None | None |
| 1797 | 677269281705472000 | NaN | NaN | 2015-12-16 23:29:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is the happiest pupper I've ever seen. 10/10 would trade lives with https://t.co/ep8ATEJwRb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677269281705472000/photo/1 | 10 | 10 | the | None | None | pupper | None |
| 1815 | 676613908052996102 | NaN | NaN | 2015-12-15 04:05:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is the saddest/sweetest/best picture I've been sent. 12/10 😢🐶 https://t.co/vQ2Lw1BLBF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676613908052996102/photo/1 | 12 | 10 | the | None | None | None | None |
| 1853 | 675706639471788032 | NaN | NaN | 2015-12-12 15:59:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Sizzlin Menorah spaniel from Brooklyn named Wylie. Lovable eyes. Chiller as hell. 10/10 and I'm out.. poof https://t.co/7E0AiJXPmI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675706639471788032/photo/1 | 10 | 10 | a | None | None | None | None |
| 1854 | 675534494439489536 | NaN | NaN | 2015-12-12 04:35:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Seriously guys?! Only send in dogs. I only rate dogs. This is a baby black bear... 11/10 https://t.co/H7kpabTfLj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675534494439489536/photo/1 | 11 | 10 | a | None | None | None | None |
| 1877 | 675109292475830276 | NaN | NaN | 2015-12-11 00:26:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | C'mon guys. We've been over this. We only rate dogs. This is a cow. Please only submit dogs. Thank you...... 9/10 https://t.co/WjcELNEqN2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675109292475830276/photo/1 | 9 | 10 | a | None | None | None | None |
| 1878 | 675047298674663426 | NaN | NaN | 2015-12-10 20:19:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a fluffy albino Bacardi Columbia mix. Excellent at the tweets. 11/10 would hug gently https://t.co/diboDRUuEI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675047298674663426/photo/1 | 11 | 10 | a | None | None | None | None |
| 1916 | 674307341513269249 | NaN | NaN | 2015-12-08 19:19:32 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is life-changing. 12/10 https://t.co/SroTpI6psB | NaN | NaN | NaN | https://vine.co/v/i7nWzrenw5h | 12 | 10 | life | None | None | None | None |
| 1923 | 674082852460433408 | NaN | NaN | 2015-12-08 04:27:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Sagitariot Baklava mix. Loves her new hat. 11/10 radiant pup https://t.co/Bko5kFJYUU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674082852460433408/photo/1 | 11 | 10 | a | None | None | None | None |
| 1936 | 673956914389192708 | NaN | NaN | 2015-12-07 20:07:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is one esteemed pupper. Just graduated college. 10/10 what a champ https://t.co/nyReCVRiyd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673956914389192708/photo/1 | 10 | 10 | one | None | None | pupper | None |
| 1941 | 673715861853720576 | NaN | NaN | 2015-12-07 04:09:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a heavily opinionated dog. Loves walls. Nobody knows how the hair works. Always ready for a kiss. 4/10 https://t.co/dFiaKZ9cDl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673715861853720576/photo/1 | 4 | 10 | a | None | None | None | None |
| 1955 | 673636718965334016 | NaN | NaN | 2015-12-06 22:54:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Lofted Aphrodisiac Terrier named Kip. Big fan of bed n breakfasts. Fits perfectly. 10/10 would pet firmly https://t.co/gKlLpNzIl3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673636718965334016/photo/1 | 10 | 10 | a | None | None | None | None |
| 1994 | 672604026190569472 | NaN | NaN | 2015-12-04 02:31:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a baby Rand Paul. Curls for days. 11/10 would cuddle the hell out of https://t.co/xHXNaPAYRe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672604026190569472/photo/1 | 11 | 10 | a | None | None | None | None |
| 2001 | 672482722825261057 | NaN | NaN | 2015-12-03 18:29:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is light saber pup. Ready to fight off evil with light saber. 10/10 true hero https://t.co/LPPa3btIIt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672482722825261057/photo/1 | 10 | 10 | light | None | None | None | None |
| 2019 | 672125275208069120 | NaN | NaN | 2015-12-02 18:48:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is just impressive I have nothing else to say. 11/10 https://t.co/LquQZiZjJP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672125275208069120/photo/1 | 11 | 10 | just | None | None | None | None |
| 2030 | 671789708968640512 | NaN | NaN | 2015-12-01 20:35:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is space pup. He's very confused. Tries to moonwalk at one point. Super spiffy uniform. 13/10 I love space pup https://t.co/SfPQ2KeLdq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671789708968640512/photo/1 | 13 | 10 | space | None | None | None | None |
| 2034 | 671743150407421952 | NaN | NaN | 2015-12-01 17:30:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Tuscaloosa Alcatraz named Jacob (Yacōb). Loves to sit in swing. Stellar tongue. 11/10 look at his feet https://t.co/2IslQ8ZSc7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671743150407421952/photo/1 | 11 | 10 | a | None | None | None | None |
| 2037 | 671561002136281088 | NaN | NaN | 2015-12-01 05:26:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is the best thing I've ever seen so spread it like wildfire & maybe we'll find the genius who created it. 13/10 https://t.co/q6RsuOVYwU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671561002136281088/photo/1 | 13 | 10 | the | None | None | None | None |
| 2066 | 671147085991960577 | NaN | NaN | 2015-11-30 02:01:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Helvetica Listerine named Rufus. This time Rufus will be ready for the UPS guy. He'll never expect it 9/10 https://t.co/34OhVhMkVr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671147085991960577/photo/1 | 9 | 10 | a | None | None | None | None |
| 2116 | 670427002554466305 | NaN | NaN | 2015-11-28 02:20:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Deciduous Trimester mix named Spork. Only 1 ear works. No seat belt. Incredibly reckless. 9/10 still cute https://t.co/CtuJoLHiDo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670427002554466305/photo/1 | 9 | 10 | a | None | None | None | None |
| 2125 | 670361874861563904 | NaN | NaN | 2015-11-27 22:01:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Rich Mahogany Seltzer named Cherokee. Just got destroyed by a snowball. Isn't very happy about it. 9/10 https://t.co/98ZBi6o4dj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670361874861563904/photo/1 | 9 | 10 | a | None | None | None | None |
| 2128 | 670303360680108032 | NaN | NaN | 2015-11-27 18:09:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Speckled Cauliflower Yosemite named Hemry. He's terrified of intruder dog. Not one bit comfortable. 9/10 https://t.co/yV3Qgjh8iN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670303360680108032/photo/1 | 9 | 10 | a | None | None | None | None |
| 2146 | 669923323644657664 | NaN | NaN | 2015-11-26 16:59:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a spotted Lipitor Rumpelstiltskin named Alphred. He can't wait for the Turkey. 10/10 would pet really well https://t.co/6GUGO7azNX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669923323644657664/photo/1 | 10 | 10 | a | None | None | None | None |
| 2153 | 669661792646373376 | NaN | NaN | 2015-11-25 23:39:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a brave dog. Excellent free climber. Trying to get closer to God. Not very loyal though. Doesn't bark. 5/10 https://t.co/ODnILTr4QM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669661792646373376/photo/1 | 5 | 10 | a | None | None | None | None |
| 2161 | 669564461267722241 | NaN | NaN | 2015-11-25 17:13:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Coriander Baton Rouge named Alfredo. Loves to cuddle with smaller well-dressed dog. 10/10 would hug lots https://t.co/eCRdwouKCl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669564461267722241/photo/1 | 10 | 10 | a | None | None | None | None |
| 2191 | 668955713004314625 | NaN | NaN | 2015-11-24 00:54:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Slovakian Helter Skelter Feta named Leroi. Likes to skip on roofs. Good traction. Much balance. 10/10 wow! https://t.co/Dmy2mY2Qj5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668955713004314625/photo/1 | 10 | 10 | a | None | None | None | None |
| 2198 | 668815180734689280 | NaN | NaN | 2015-11-23 15:35:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a wild Toblerone from Papua New Guinea. Mouth always open. Addicted to hay. Acts blind. 7/10 handsome dog https://t.co/IGmVbz07tZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668815180734689280/photo/1 | 7 | 10 | a | None | None | None | None |
| 2204 | 668636665813057536 | NaN | NaN | 2015-11-23 03:46:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is an Irish Rigatoni terrier named Berta. Completely made of rope. No eyes. Quite large. Loves to dance. 10/10 https://t.co/EM5fDykrJg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668636665813057536/photo/1 | 10 | 10 | an | None | None | None | None |
| 2211 | 668614819948453888 | NaN | NaN | 2015-11-23 02:19:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is a horned dog. Much grace. Can jump over moons (dam!). Paws not soft. Bad at barking. 7/10 can still pet tho https://t.co/2Su7gmsnZm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668614819948453888/photo/1 | 7 | 10 | a | None | None | None | None |
| 2212 | 668587383441514497 | NaN | NaN | 2015-11-23 00:30:28 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Never forget this vine. You will not stop watching for at least 15 minutes. This is the second coveted.. 13/10 https://t.co/roqIxCvEB3 | NaN | NaN | NaN | https://vine.co/v/ea0OwvPTx9l | 13 | 10 | the | None | None | None | None |
| 2218 | 668507509523615744 | NaN | NaN | 2015-11-22 19:13:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Birmingham Quagmire named Chuk. Loves to relax and watch the game while sippin on that iced mocha. 10/10 https://t.co/HvNg9JWxFt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668507509523615744/photo/1 | 10 | 10 | a | None | None | None | None |
| 2222 | 668466899341221888 | NaN | NaN | 2015-11-22 16:31:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is a mother dog caring for her pups. Snazzy red mohawk. Doesn't wag tail. Pups look confused. Overall 4/10 https://t.co/YOHe6lf09m | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668466899341221888/photo/1 | 4 | 10 | a | None | None | None | None |
| 2235 | 668171859951755264 | NaN | NaN | 2015-11-21 20:59:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Trans Siberian Kellogg named Alfonso. Huge ass eyeballs. Actually Dobby from Harry Potter. 7/10 https://t.co/XpseHBlAAb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668171859951755264/photo/1 | 7 | 10 | a | None | None | None | None |
| 2249 | 667861340749471744 | NaN | NaN | 2015-11-21 00:25:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Shotokon Macadamia mix named Cheryl. Sophisticated af. Looks like a disappointed librarian. Shh (lol) 9/10 https://t.co/J4GnJ5Swba | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667861340749471744/photo/1 | 9 | 10 | a | None | None | None | None |
| 2255 | 667773195014021121 | NaN | NaN | 2015-11-20 18:35:10 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This is a rare Hungarian Pinot named Jessiga. She is either mid-stroke or got stuck in the washing machine. 8/10 https://t.co/ZU0i0KJyqD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667773195014021121/photo/1 | 8 | 10 | a | None | None | None | None |
| 2264 | 667538891197542400 | NaN | NaN | 2015-11-20 03:04:08 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This is a southwest Coriander named Klint. Hat looks expensive. Still on house arrest :(\n9/10 https://t.co/IQTOMqDUIe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667538891197542400/photo/1 | 9 | 10 | a | None | None | None | None |
| 2273 | 667470559035432960 | NaN | NaN | 2015-11-19 22:32:36 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This is a northern Wahoo named Kohl. He runs this town. Chases tumbleweeds. Draws gun wicked fast. 11/10 legendary https://t.co/J4vn2rOYFk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667470559035432960/photo/1 | 11 | 10 | a | None | None | None | None |
| 2287 | 667177989038297088 | NaN | NaN | 2015-11-19 03:10:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Dasani Kingfisher from Maine. His name is Daryl. Daryl doesn't like being swallowed by a panda. 8/10 https://t.co/jpaeu6LNmW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667177989038297088/photo/1 | 8 | 10 | a | None | None | None | None |
| 2304 | 666983947667116034 | NaN | NaN | 2015-11-18 14:18:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a curly Ticonderoga named Pepe. No feet. Loves to jet ski. 11/10 would hug until forever https://t.co/cyDfaK8NBc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666983947667116034/photo/1 | 11 | 10 | a | None | None | None | None |
| 2311 | 666781792255496192 | NaN | NaN | 2015-11-18 00:55:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a purebred Bacardi named Octaviath. Can shoot spaghetti out of mouth. 10/10 https://t.co/uEvsGLOFHa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666781792255496192/photo/1 | 10 | 10 | a | None | None | None | None |
| 2314 | 666701168228331520 | NaN | NaN | 2015-11-17 19:35:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a golden Buckminsterfullerene named Johm. Drives trucks. Lumberjack (?). Enjoys wall. 8/10 would hug softly https://t.co/uQbZJM2DQB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666701168228331520/photo/1 | 8 | 10 | a | None | None | None | None |
| 2326 | 666411507551481857 | NaN | NaN | 2015-11-17 00:24:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is quite the dog. Gets really excited when not in water. Not very soft tho. Bad at fetch. Can't do tricks. 2/10 https://t.co/aMCTNWO94t | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666411507551481857/photo/1 | 2 | 10 | quite | None | None | None | None |
| 2327 | 666407126856765440 | NaN | NaN | 2015-11-17 00:06:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a southern Vesuvius bumblegruff. Can drive a truck (wow). Made friends with 5 other nifty dogs (neat). 7/10 https://t.co/LopTBkKa8h | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666407126856765440/photo/1 | 7 | 10 | a | None | None | None | None |
| 2333 | 666337882303524864 | NaN | NaN | 2015-11-16 19:31:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is an extremely rare horned Parthenon. Not amused. Wears shoes. Overall very nice. 9/10 would pet aggressively https://t.co/QpRjllzWAL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666337882303524864/photo/1 | 9 | 10 | an | None | None | None | None |
| 2334 | 666293911632134144 | NaN | NaN | 2015-11-16 16:37:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a funny dog. Weird toes. Won't come down. Loves branch. Refuses to eat his food. Hard to cuddle with. 3/10 https://t.co/IIXis0zta0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666293911632134144/photo/1 | 3 | 10 | a | None | None | None | None |
| 2335 | 666287406224695296 | NaN | NaN | 2015-11-16 16:11:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is an Albanian 3 1/2 legged Episcopalian. Loves well-polished hardwood flooring. Penis on the collar. 9/10 https://t.co/d9NcXFKwLv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666287406224695296/photo/1 | 1 | 2 | an | None | None | None | None |
| 2345 | 666063827256086533 | NaN | NaN | 2015-11-16 01:22:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is the happiest dog you will ever see. Very committed owner. Nice couch. 10/10 https://t.co/RhUEAloehK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666063827256086533/photo/1 | 10 | 10 | the | None | None | None | None |
| 2346 | 666058600524156928 | NaN | NaN | 2015-11-16 01:01:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is the Rand Paul of retrievers folks! He's probably good at poker. Can drink beer (lol rad). 8/10 good dog https://t.co/pYAJkAe76p | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666058600524156928/photo/1 | 8 | 10 | the | None | None | None | None |
| 2347 | 666057090499244032 | NaN | NaN | 2015-11-16 00:55:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | My oh my. This is a rare blond Canadian terrier on wheels. Only $8.98. Rather docile. 9/10 very rare https://t.co/yWBqbrzy8O | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666057090499244032/photo/1 | 9 | 10 | a | None | None | None | None |
| 2348 | 666055525042405380 | NaN | NaN | 2015-11-16 00:49:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is a Siberian heavily armored polar bear mix. Strong owner. 10/10 I would do unspeakable things to pet this dog https://t.co/rdivxLiqEt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666055525042405380/photo/1 | 10 | 10 | a | None | None | None | None |
| 2349 | 666051853826850816 | NaN | NaN | 2015-11-16 00:35:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is an odd dog. Hard on the outside but loving on the inside. Petting still fun. Doesn't play catch well. 2/10 https://t.co/v5A4vzSDdc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666051853826850816/photo/1 | 2 | 10 | an | None | None | None | None |
| 2350 | 666050758794694657 | NaN | NaN | 2015-11-16 00:30:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a truly beautiful English Wilson Staff retriever. Has a nice phone. Privileged. 10/10 would trade lives with https://t.co/fvIbQfHjIe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666050758794694657/photo/1 | 10 | 10 | a | None | None | None | None |
| 2352 | 666044226329800704 | NaN | NaN | 2015-11-16 00:04:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a purebred Piers Morgan. Loves to Netflix and chill. Always looks like he forgot to unplug the iron. 6/10 https://t.co/DWnyCjf2mx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666044226329800704/photo/1 | 6 | 10 | a | None | None | None | None |
| 2353 | 666033412701032449 | NaN | NaN | 2015-11-15 23:21:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is a very happy pup. Big fan of well-maintained decks. Just look at that tongue. 9/10 would cuddle af https://t.co/y671yMhoiR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666033412701032449/photo/1 | 9 | 10 | a | None | None | None | None |
| 2354 | 666029285002620928 | NaN | NaN | 2015-11-15 23:05:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a western brown Mitsubishi terrier. Upset about leaf. Actually 2 dogs here. 7/10 would walk the shit out of https://t.co/r7mOb2m0UI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666029285002620928/photo/1 | 7 | 10 | a | None | None | None | None |
twitter_archive.loc[twitter_archive['name'].str.islower()]['name'].unique()
# check the unique names which are in lower case
array(['such', 'a', 'quite', 'not', 'one', 'incredibly', 'mad', 'an',
'very', 'just', 'my', 'his', 'actually', 'getting', 'this',
'unacceptable', 'all', 'old', 'infuriating', 'the', 'by',
'officially', 'life', 'light', 'space'], dtype=object)
twitter_archive['doggo'].value_counts()
None 2259 doggo 97 Name: doggo, dtype: int64
twitter_archive['floofer'].value_counts()
None 2346 floofer 10 Name: floofer, dtype: int64
twitter_archive['pupper'].value_counts()
None 2099 pupper 257 Name: pupper, dtype: int64
twitter_archive['puppo'].value_counts()
None 2326 puppo 30 Name: puppo, dtype: int64
image_prediction.head()
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | Welsh_springer_spaniel | 0.465074 | True | collie | 0.156665 | True | Shetland_sheepdog | 0.061428 | True |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | redbone | 0.506826 | True | miniature_pinscher | 0.074192 | True | Rhodesian_ridgeback | 0.072010 | True |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | German_shepherd | 0.596461 | True | malinois | 0.138584 | True | bloodhound | 0.116197 | True |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | Rhodesian_ridgeback | 0.408143 | True | redbone | 0.360687 | True | miniature_pinscher | 0.222752 | True |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | miniature_pinscher | 0.560311 | True | Rottweiler | 0.243682 | True | Doberman | 0.154629 | True |
image_prediction.shape
(2075, 12)
image_prediction.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2075 entries, 0 to 2074 Data columns (total 12 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2075 non-null int64 1 jpg_url 2075 non-null object 2 img_num 2075 non-null int64 3 p1 2075 non-null object 4 p1_conf 2075 non-null float64 5 p1_dog 2075 non-null bool 6 p2 2075 non-null object 7 p2_conf 2075 non-null float64 8 p2_dog 2075 non-null bool 9 p3 2075 non-null object 10 p3_conf 2075 non-null float64 11 p3_dog 2075 non-null bool dtypes: bool(3), float64(3), int64(2), object(4) memory usage: 152.1+ KB
image_prediction.duplicated().sum()
0
image_prediction.describe()
| tweet_id | img_num | p1_conf | p2_conf | p3_conf | |
|---|---|---|---|---|---|
| count | 2.075000e+03 | 2075.000000 | 2075.000000 | 2.075000e+03 | 2.075000e+03 |
| mean | 7.384514e+17 | 1.203855 | 0.594548 | 1.345886e-01 | 6.032417e-02 |
| std | 6.785203e+16 | 0.561875 | 0.271174 | 1.006657e-01 | 5.090593e-02 |
| min | 6.660209e+17 | 1.000000 | 0.044333 | 1.011300e-08 | 1.740170e-10 |
| 25% | 6.764835e+17 | 1.000000 | 0.364412 | 5.388625e-02 | 1.622240e-02 |
| 50% | 7.119988e+17 | 1.000000 | 0.588230 | 1.181810e-01 | 4.944380e-02 |
| 75% | 7.932034e+17 | 1.000000 | 0.843855 | 1.955655e-01 | 9.180755e-02 |
| max | 8.924206e+17 | 4.000000 | 1.000000 | 4.880140e-01 | 2.734190e-01 |
image_prediction.jpg_url.value_counts()
https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg 2 https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg 2 https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg 2 https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg 2 https://pbs.twimg.com/media/CvaYgDOWgAEfjls.jpg 2 https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg 2 https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg 2 https://pbs.twimg.com/ext_tw_video_thumb/815965888126062592/pu/img/JleSw4wRhgKDWQj5.jpg 2 https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg 2 https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg 2 https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg 2 https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg 2 https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg 2 https://pbs.twimg.com/ext_tw_video_thumb/675354114423808004/pu/img/qL1R_nGLqa6lmkOx.jpg 2 https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg 2 https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg 2 https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg 2 https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg 2 https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg 2 https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg 2 https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg 2 https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg 2 https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg 2 https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg 2 https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg 2 https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg 2 https://pbs.twimg.com/media/Ct2qO5PXEAE6eB0.jpg 2 https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg 2 https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg 2 https://pbs.twimg.com/media/CWyD2HGUYAQ1Xa7.jpg 2 https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg 2 https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg 2 https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg 2 https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg 2 https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg 2 https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg 2 https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg 2 https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg 2 https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg 2 https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg 2 https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg 2 https://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg 2 https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg 2 https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg 2 https://pbs.twimg.com/tweet_video_thumb/CeBym7oXEAEWbEg.jpg 2 https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg 2 https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg 2 https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg 2 https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg 2 https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg 2 https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg 2 https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg 2 https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg 2 https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg 2 https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg 2 https://pbs.twimg.com/ext_tw_video_thumb/807106774843039744/pu/img/8XZg1xW35Xp2J6JW.jpg 2 https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg 2 https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg 2 https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg 2 https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg 2 https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg 2 https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg 2 https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg 2 https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg 2 https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg 2 https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 2 https://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg 1 https://pbs.twimg.com/media/CcVOJEcXEAM0FHL.jpg 1 https://pbs.twimg.com/media/C1G7sXyWIAA10eH.jpg 1 https://pbs.twimg.com/media/Cz6Z0DgWIAAfdvp.jpg 1 https://pbs.twimg.com/media/Cd8Rpl0W0AAN1kU.jpg 1 https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg 1 https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 https://pbs.twimg.com/media/CU8VFhuVAAAQW8B.jpg 1 https://pbs.twimg.com/media/CVP9_beUEAAwURR.jpg 1 https://pbs.twimg.com/media/CaA-IR9VIAAqg5l.jpg 1 https://pbs.twimg.com/media/CZmdSD8UcAAnY5R.jpg 1 https://pbs.twimg.com/media/CY8gWFRWUAAm1XL.jpg 1 https://pbs.twimg.com/media/CZDT-mZWsAEK9BH.jpg 1 https://pbs.twimg.com/media/Cdese-zWEAArIqE.jpg 1 https://pbs.twimg.com/media/CUttjYtWcAAdPgI.jpg 1 https://pbs.twimg.com/media/CcHWqQCW8AEb0ZH.jpg 1 https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg 1 https://pbs.twimg.com/media/CUi3PIrWoAAPvPT.jpg 1 https://pbs.twimg.com/media/CWt-MNIWEAAUC9S.jpg 1 https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg 1 https://pbs.twimg.com/media/Co36VZfWcAEN3R3.jpg 1 https://pbs.twimg.com/media/CZSnKw8WwAAAN7q.jpg 1 https://pbs.twimg.com/media/CWmlvxJU4AEAqaN.jpg 1 https://pbs.twimg.com/media/Coy87yiWYAACtPf.jpg 1 https://pbs.twimg.com/media/CVJ2yR2UwAAdCzU.jpg 1 https://pbs.twimg.com/media/CfovbK4WIAAkTn3.jpg 1 https://pbs.twimg.com/media/Chkc1BQUoAAa96R.jpg 1 https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg 1 https://pbs.twimg.com/media/CVPDAR9XIAAm8QB.jpg 1 https://pbs.twimg.com/media/CVe7r7QVEAAc4Bg.jpg 1 https://pbs.twimg.com/media/CU9P717W4AAOlKx.jpg 1 https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg 1 https://pbs.twimg.com/media/CsaaaaxWgAEfzM7.jpg 1 https://pbs.twimg.com/media/Ch0LVPdW0AEdHgU.jpg 1 https://pbs.twimg.com/media/Ca31BTgWwAA4uNU.jpg 1 https://pbs.twimg.com/media/CVqZBO8WUAAd931.jpg 1 https://pbs.twimg.com/media/CdI7jDnW0AA2dtO.jpg 1 https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg 1 https://pbs.twimg.com/media/CbBuBhbWwAEGH29.jpg 1 https://pbs.twimg.com/media/Cfe5tLWXEAIaoFO.jpg 1 https://pbs.twimg.com/media/CpWnecZWIAAUFwt.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/737310236135043073/pu/img/_lG4DXmH-_XEq7Rc.jpg 1 https://pbs.twimg.com/media/CVzkA7-WsAAcXz6.jpg 1 https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg 1 https://pbs.twimg.com/media/Cs47N3eWcAEmgiW.jpg 1 https://pbs.twimg.com/media/CUOcVCwWsAERUKY.jpg 1 https://pbs.twimg.com/media/CfKNvU8WsAAvI9Z.jpg 1 https://pbs.twimg.com/media/CV4iqh5WcAEV1E6.jpg 1 https://pbs.twimg.com/media/CkTvJTdXAAAEfbT.jpg 1 https://pbs.twimg.com/media/CczOp_OWoAAo5zR.jpg 1 https://pbs.twimg.com/media/CcO66OjXEAASXmH.jpg 1 https://pbs.twimg.com/media/Chyy5lQWUAEzxSL.jpg 1 https://pbs.twimg.com/media/CWm6xySUEAAqfFU.jpg 1 https://pbs.twimg.com/media/CcWDTerUAAALORn.jpg 1 https://pbs.twimg.com/media/Ca5cPrJXIAImHtD.jpg 1 https://pbs.twimg.com/media/CcRKOzyXEAQO_HN.jpg 1 https://pbs.twimg.com/media/CVfU7KLXAAAAgIa.jpg 1 https://pbs.twimg.com/media/CkeJcNkXEAAcrks.jpg 1 https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg 1 https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg 1 https://pbs.twimg.com/media/CcLq7ipW4AArSGZ.jpg 1 https://pbs.twimg.com/media/CeW3MWMWQAEOMbq.jpg 1 https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg 1 https://pbs.twimg.com/media/CV1B0WkWwAEBKVx.jpg 1 https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg 1 https://pbs.twimg.com/media/CVgbIobUYAEaeI3.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/772874595468795904/pu/img/t8gbjy2rA19xtQYR.jpg 1 https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg 1 https://pbs.twimg.com/media/CaVmajOWYAA1uNG.jpg 1 https://pbs.twimg.com/media/CpRKzZKWAAABGh7.jpg 1 https://pbs.twimg.com/media/C0eUHfWUAAANEYr.jpg 1 https://pbs.twimg.com/media/CVRLfeoW4AA_ldZ.jpg 1 https://pbs.twimg.com/media/CXaQqGbWMAAKEgN.jpg 1 https://pbs.twimg.com/media/C2UpLA-UcAEK_Fz.jpg 1 https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg 1 https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg 1 https://pbs.twimg.com/media/CyeTku-XcAALkBd.jpg 1 https://pbs.twimg.com/media/CmFM7ngXEAEitfh.jpg 1 https://pbs.twimg.com/media/CWDrGH4UYAARoq_.jpg 1 https://pbs.twimg.com/media/CWcSAI-WUAAOB9W.jpg 1 https://pbs.twimg.com/media/CuqM0fVWAAAboKR.jpg 1 https://pbs.twimg.com/media/CXltdtaWYAIuX_V.jpg 1 https://pbs.twimg.com/media/ChvAQuMWMAAVaKD.jpg 1 https://pbs.twimg.com/media/CwWVe_3WEAAHAvx.jpg 1 https://pbs.twimg.com/media/CXSJGAQUQAAoG9Q.jpg 1 https://pbs.twimg.com/media/Cc0_2tXXEAA2iTY.jpg 1 https://pbs.twimg.com/media/Cw2uty8VQAAB0pL.jpg 1 https://pbs.twimg.com/media/CaV5mRDXEAAR8iG.jpg 1 https://pbs.twimg.com/media/CXpeVzQW8AApKYb.jpg 1 https://pbs.twimg.com/media/CfuVGl3WEAEKb16.jpg 1 https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg 1 https://pbs.twimg.com/media/CzrtWDbWEAAmIhy.jpg 1 https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg 1 https://pbs.twimg.com/media/C0jBJZVWQAA2_-X.jpg 1 https://pbs.twimg.com/media/CvOUw8vWYAAzJDq.jpg 1 https://pbs.twimg.com/media/CWNOdIpWoAAWid2.jpg 1 https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg 1 https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg 1 https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg 1 https://pbs.twimg.com/media/CwI2XCvXEAEO8mc.jpg 1 https://pbs.twimg.com/media/CfznaXuUsAAH-py.jpg 1 https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg 1 https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg 1 https://pbs.twimg.com/media/CwHj-jGWAAAnsny.jpg 1 https://pbs.twimg.com/media/CXMqwIQWcAA2iE0.jpg 1 https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg 1 https://pbs.twimg.com/media/C0izZULWgAAKD-F.jpg 1 https://pbs.twimg.com/media/CUM2qWaWoAUZ06L.jpg 1 https://pbs.twimg.com/media/CZ2uU37UcAANzmK.jpg 1 https://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg 1 https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg 1 https://pbs.twimg.com/media/CWehRdEWIAAySyO.jpg 1 https://pbs.twimg.com/media/CWSN-vaXAAA8Ehr.jpg 1 https://pbs.twimg.com/media/CX7qIcdWcAELJ7N.jpg 1 https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg 1 https://pbs.twimg.com/media/Cadfl6zWcAEZqIW.jpg 1 https://pbs.twimg.com/media/CVbeyGUU8AEq300.jpg 1 https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg 1 https://pbs.twimg.com/media/CwYJBiHXgAQlvrh.jpg 1 https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg 1 https://pbs.twimg.com/media/C0jqVVOXUAAGJ0G.jpg 1 https://pbs.twimg.com/media/C0DhpcrUAAAnx88.jpg 1 https://pbs.twimg.com/media/CYLAWFMWMAEcRzb.jpg 1 https://pbs.twimg.com/media/Ck18CFcXIAAUWoy.jpg 1 https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg 1 https://pbs.twimg.com/media/C0dSk98WEAALyya.jpg 1 https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg 1 https://pbs.twimg.com/media/CqzKfQgXEAAWIY-.jpg 1 https://pbs.twimg.com/media/CfN23ArXEAEkZkz.jpg 1 https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg 1 https://pbs.twimg.com/media/CWH8L72UkAAvjql.jpg 1 https://pbs.twimg.com/media/CW7bkW6WQAAksgB.jpg 1 https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg 1 https://pbs.twimg.com/media/C1IT6rVXUAIvwYT.jpg 1 https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg 1 https://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg 1 https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg 1 https://pbs.twimg.com/media/CU8sSAvXIAAB1Py.jpg 1 https://pbs.twimg.com/media/CXGdG0aWcAEbOO1.jpg 1 https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/753398183879991296/pu/img/bqFy5Zc_PEk6Mx-B.jpg 1 https://pbs.twimg.com/media/CYKzfTTWMAEeTN7.jpg 1 https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg 1 https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg 1 https://pbs.twimg.com/media/Cc_RsVlXEAIzzlX.jpg 1 https://pbs.twimg.com/media/CbdwATgWwAABGID.jpg 1 https://pbs.twimg.com/media/CcjlzRkW0AMqmWg.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/749316899712950272/pu/img/nvZI9mkoAxt89sul.jpg 1 https://pbs.twimg.com/media/Cu1mQsDWEAAU_VQ.jpg 1 https://pbs.twimg.com/media/CWPUB9TWwAALPPx.jpg 1 https://pbs.twimg.com/media/CbTvNpoW0AEemnx.jpg 1 https://pbs.twimg.com/media/CUT9PuQWwAABQv7.jpg 1 https://pbs.twimg.com/media/CUOb_gUUkAACXdS.jpg 1 https://pbs.twimg.com/media/CZiBcJhWQAATXNK.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/850380153985355777/pu/img/lFouhg-EZvJs8eMr.jpg 1 https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg 1 https://pbs.twimg.com/media/CX5nR5oWsAAiclh.jpg 1 https://pbs.twimg.com/media/CYFC5lmWAAAEIho.jpg 1 https://pbs.twimg.com/media/CWntoDVWcAEl3NB.jpg 1 https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/708026062568087553/pu/img/rNhylAwIfb6YthGu.jpg 1 https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg 1 https://pbs.twimg.com/media/CWSL4W8WsAAE4KU.jpg 1 https://pbs.twimg.com/media/CvU4UZpXgAE1pAV.jpg 1 https://pbs.twimg.com/media/CvkgUjbUsAEvo7l.jpg 1 https://pbs.twimg.com/media/CVknUTlVEAARjU5.jpg 1 https://pbs.twimg.com/media/Cs12ICuWAAECNRy.jpg 1 https://pbs.twimg.com/media/CnIQXdYWgAAnsZZ.jpg 1 https://pbs.twimg.com/media/C1Q17WdWEAAjKFO.jpg 1 https://pbs.twimg.com/media/CXQV03pWYAAVniz.jpg 1 https://pbs.twimg.com/media/CXWRZBgWkAEHMea.jpg 1 https://pbs.twimg.com/media/CXCUYcRW8AAObYM.jpg 1 https://pbs.twimg.com/media/CaBEx3SWEAILZpi.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/760289324994879489/pu/img/3ItvBEoo4aebPfvr.jpg 1 https://pbs.twimg.com/media/CbYyCMcWIAAHHjF.jpg 1 https://pbs.twimg.com/media/CV1Um8vWIAAmhQn.jpg 1 https://pbs.twimg.com/media/CU8ceuxWUAALMEo.jpg 1 https://pbs.twimg.com/media/CW-loUBWYAAn2Cb.jpg 1 https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg 1 https://pbs.twimg.com/media/CyIgaTEVEAA-9zS.jpg 1 https://pbs.twimg.com/media/CeQVF1eVIAAJaTv.jpg 1 https://pbs.twimg.com/media/CWjQm5gXAAA9GkD.jpg 1 https://pbs.twimg.com/media/CsPxk85XEAAeMQj.jpg 1 https://pbs.twimg.com/media/CUmGu7-UcAA0r3O.jpg 1 https://pbs.twimg.com/media/CurzvFTXgAA2_AP.jpg 1 https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg 1 https://pbs.twimg.com/media/CzU_YVGUUAA3Xsd.jpg 1 https://pbs.twimg.com/media/CXb2RcDUsAEnkJb.jpg 1 https://pbs.twimg.com/media/CYufR8_WQAAWCqo.jpg 1 https://pbs.twimg.com/media/CU8-puBWwAAR8Xl.jpg 1 https://pbs.twimg.com/media/CVq3zAaWwAA8vpk.jpg 1 https://pbs.twimg.com/media/CU8fZSQWoAEVp6O.jpg 1 https://pbs.twimg.com/media/C0N6opSXAAAkCtN.jpg 1 https://pbs.twimg.com/media/CpCn5aXXgAAOPTm.jpg 1 https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg 1 https://pbs.twimg.com/media/Cf3sH62VAAA-LiP.jpg 1 https://pbs.twimg.com/media/Cdth_KyWEAEXH3u.jpg 1 https://pbs.twimg.com/media/CZHyrvOXEAEin-A.jpg 1 https://pbs.twimg.com/media/CW3v1KxW8AAIOuy.jpg 1 https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg 1 https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg 1 https://pbs.twimg.com/media/CiL_qh0W0AAu5VA.jpg 1 https://pbs.twimg.com/media/Cx683NPUAAAjyU4.jpg 1 https://pbs.twimg.com/media/CYaAS2kUoAINkye.jpg 1 https://pbs.twimg.com/media/CYAra7JWsAACPZH.jpg 1 https://pbs.twimg.com/media/CoLNAq6WAAAkmdJ.jpg 1 https://pbs.twimg.com/media/C1b_LSYUsAAJ494.jpg 1 https://pbs.twimg.com/media/CVmA_osW4AArAU1.jpg 1 https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg 1 https://pbs.twimg.com/media/Caa407jWwAAJPH3.jpg 1 https://pbs.twimg.com/media/CX2F4qNUQAAR6Cm.jpg 1 https://pbs.twimg.com/media/CZ5entwWYAAocEg.jpg 1 https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg 1 https://pbs.twimg.com/media/ChY2aHyWMAAbNQE.jpg 1 https://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg 1 https://pbs.twimg.com/media/ClmT0KHWkAAXbhy.jpg 1 https://pbs.twimg.com/media/CvVTEnPXYAAWLyL.jpg 1 https://pbs.twimg.com/media/CbTaHrRW0AABXmG.jpg 1 https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg 1 https://pbs.twimg.com/media/CwnUUGTWIAE8sFR.jpg 1 https://pbs.twimg.com/media/CuA-iRHXYAAWP8e.jpg 1 https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg 1 https://pbs.twimg.com/media/CdPaEkHW8AA-Wom.jpg 1 https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg 1 https://pbs.twimg.com/media/CcBjp2nWoAA8w-2.jpg 1 https://pbs.twimg.com/media/CeHg1klW8AE4YOB.jpg 1 https://pbs.twimg.com/media/CV_SimUWoAAvJSY.jpg 1 https://pbs.twimg.com/media/C1_DQn3UoAIoJy7.jpg 1 https://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg 1 https://pbs.twimg.com/media/CavjCdJW0AIB5Oz.jpg 1 https://pbs.twimg.com/media/Cas5h-wWcAA3nAc.jpg 1 https://pbs.twimg.com/media/Czky0v9VIAEXRkd.jpg 1 https://pbs.twimg.com/media/CVHG6_AWwAEJf_u.jpg 1 https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg 1 https://pbs.twimg.com/media/Cxv-nkJUoAAhzMt.jpg 1 https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg 1 https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/698635005506015234/pu/img/wQ4yFXTZ-2QLt68b.jpg 1 https://pbs.twimg.com/media/CysBn-lWIAAoRx1.jpg 1 https://pbs.twimg.com/media/CrOgsIBWYAA8Dtb.jpg 1 https://pbs.twimg.com/media/Coz12OLWgAADdys.jpg 1 https://pbs.twimg.com/media/CoLTbbzXYAElNM6.jpg 1 https://pbs.twimg.com/media/CWJ6Sc-WwAAlpI6.jpg 1 https://pbs.twimg.com/media/CZX2SxaXEAEcnR6.jpg 1 https://pbs.twimg.com/media/C2aitIUXAAAG-Wi.jpg 1 https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg 1 https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg 1 https://pbs.twimg.com/media/CmfoyrrW8AA8v7w.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/695064251149508610/pu/img/0OPED0aUurb9Z16a.jpg 1 https://pbs.twimg.com/media/CovKqSYVIAAUbUW.jpg 1 https://pbs.twimg.com/media/CXh5_dDWQAIbU-J.jpg 1 https://pbs.twimg.com/media/CbxjnyOWAAAWLUH.jpg 1 https://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg 1 https://pbs.twimg.com/media/CqedCQWWgAIab9L.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/676957802976419840/pu/img/dCj-qlXo73A5hf6Q.jpg 1 https://pbs.twimg.com/media/CfpNGTHUIAAA8XC.jpg 1 https://pbs.twimg.com/media/CVqUgTIUAAUA8Jr.jpg 1 https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg 1 https://pbs.twimg.com/media/CeznK6IWEAEFUPq.jpg 1 https://pbs.twimg.com/media/CdO-6x5W8AENSBJ.jpg 1 https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg 1 https://pbs.twimg.com/media/C1NXQ6NXUAEAxIQ.jpg 1 https://pbs.twimg.com/media/CcAhPevW8AAoknv.jpg 1 https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg 1 https://pbs.twimg.com/media/CcgqBNVW8AE76lv.jpg 1 https://pbs.twimg.com/media/Cb2cfd9WAAEL-zk.jpg 1 https://pbs.twimg.com/media/CeaLlAPUMAIcC7U.jpg 1 https://pbs.twimg.com/media/CuXSHNnWcAIWEwn.jpg 1 https://pbs.twimg.com/media/CiYME3tVAAENz99.jpg 1 https://pbs.twimg.com/media/CYpZrtDWwAE8Kpw.jpg 1 https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg 1 https://pbs.twimg.com/media/CVt-SeMWwAAs9HH.jpg 1 https://pbs.twimg.com/media/CWCYOqWUAAARmGr.jpg 1 https://pbs.twimg.com/media/Cj_P7rSUgAAYQbz.jpg 1 https://pbs.twimg.com/media/CehIzzZWQAEyHH5.jpg 1 https://pbs.twimg.com/media/CaveNQcVIAECyBr.jpg 1 https://pbs.twimg.com/media/CWuVQSLW4AAI3w9.jpg 1 https://pbs.twimg.com/media/ClHUkhQWAAAy7Yj.jpg 1 https://pbs.twimg.com/media/CePoVTyWsAQEz1g.jpg 1 https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/674805331965399040/pu/img/-7bw8niVrgIkLKOW.jpg 1 https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg 1 https://pbs.twimg.com/media/CYfCMdFWAAA44YA.jpg 1 https://pbs.twimg.com/media/CVQGv-vUwAEUjCj.jpg 1 https://pbs.twimg.com/media/CXMvio7WQAAPZJj.jpg 1 https://pbs.twimg.com/media/Cdh4pgAW0AEKJ_a.jpg 1 https://pbs.twimg.com/media/CpBsRleW8AEfO8G.jpg 1 https://pbs.twimg.com/media/CtAAYizW8AAWzBZ.jpg 1 https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg 1 https://pbs.twimg.com/media/CWUA1GFW4AAowiq.jpg 1 https://pbs.twimg.com/media/Cd1tYGmXIAAoW5b.jpg 1 https://pbs.twimg.com/media/Cl071YVWEAAlF7N.jpg 1 https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg 1 https://pbs.twimg.com/media/CdojYQmW8AApv4h.jpg 1 https://pbs.twimg.com/media/CvukbEkWAAAV-69.jpg 1 https://pbs.twimg.com/media/CVbc2V2WsAE3-kn.jpg 1 https://pbs.twimg.com/media/CUOGUfJW4AA_eni.jpg 1 https://pbs.twimg.com/media/ChfXDrGUkAEAtF-.jpg 1 https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg 1 https://pbs.twimg.com/media/CUdqjvAWUAANfoU.jpg 1 https://pbs.twimg.com/media/ClLZU8LWQAAsOxV.jpg 1 https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg 1 https://pbs.twimg.com/media/CZXTgKkWwAA5UZJ.jpg 1 https://pbs.twimg.com/media/CYVXBb9WsAAwL3p.jpg 1 https://pbs.twimg.com/media/CeHDV73W0AM5Cf8.jpg 1 https://pbs.twimg.com/media/CnBBfNuWcAAkOgO.jpg 1 https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg 1 https://pbs.twimg.com/media/CavO0uuWEAE96Ed.jpg 1 https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg 1 https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg 1 https://pbs.twimg.com/media/Cp8k6oRWcAUL78U.jpg 1 https://pbs.twimg.com/media/CV-ef64WoAAbh0I.jpg 1 https://pbs.twimg.com/media/CWOt07EUsAAnOYW.jpg 1 https://pbs.twimg.com/media/CV01M3ZWIAAV7rv.jpg 1 https://pbs.twimg.com/media/CsP1UvaW8AExVSA.jpg 1 https://pbs.twimg.com/media/CXvGbWeWMAcRbyJ.jpg 1 https://pbs.twimg.com/media/Ccbi0UGWoAA4fwg.jpg 1 https://pbs.twimg.com/media/Cc4gjxqW4AIoThO.jpg 1 https://pbs.twimg.com/media/C2d_vnHWEAE9phX.jpg 1 https://pbs.twimg.com/media/CWO5gmCUYAAX4WA.jpg 1 https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg 1 https://pbs.twimg.com/media/CdrXp9dWoAAcRfn.jpg 1 https://pbs.twimg.com/media/CcwcSS9WwAALE4f.jpg 1 https://pbs.twimg.com/media/Cc_XtkRW8AEE7Fn.jpg 1 https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg 1 https://pbs.twimg.com/media/CnbJuPoXEAAjcVF.jpg 1 https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg 1 https://pbs.twimg.com/media/CVqeEKLW4AA1wXH.jpg 1 https://pbs.twimg.com/media/CwH_foYWgAEvTyI.jpg 1 https://pbs.twimg.com/media/Cu0hlfwWYAEdnXO.jpg 1 https://pbs.twimg.com/media/CkthBj7WgAAsIGb.jpg 1 https://pbs.twimg.com/media/CVUjd14W4AE8tvO.jpg 1 https://pbs.twimg.com/media/CV6spB7XAAIpMyP.jpg 1 https://pbs.twimg.com/media/CWPKSGpWcAQN6mw.jpg 1 https://pbs.twimg.com/media/CX2ISqSWYAAEtCF.jpg 1 https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg 1 https://pbs.twimg.com/media/Cjt_Hm6WsAAjkPG.jpg 1 https://pbs.twimg.com/media/CVBktzQXAAAPpUA.jpg 1 https://pbs.twimg.com/media/CYUwjz-UAAEcdi8.jpg 1 https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg 1 https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg 1 https://pbs.twimg.com/media/CavWWdFWAAArflW.jpg 1 https://pbs.twimg.com/media/CVt2PawWIAEUkqW.jpg 1 https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg 1 https://pbs.twimg.com/media/CVqqMtiVEAEye_L.jpg 1 https://pbs.twimg.com/media/Chiv6BAW4AAiQvH.jpg 1 https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg 1 https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg 1 https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg 1 https://pbs.twimg.com/media/Cfu1KSRXEAACC5X.jpg 1 https://pbs.twimg.com/media/CVEouDRXAAEe8mt.jpg 1 https://pbs.twimg.com/media/CrTsCPHWYAANdzC.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/817827663108771841/pu/img/e9oi839RGWJR37jF.jpg 1 https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg 1 https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg 1 https://pbs.twimg.com/media/CW9olDsUsAA0XSf.jpg 1 https://pbs.twimg.com/media/CU8IY0pWIAA2AJ-.jpg 1 https://pbs.twimg.com/media/CWe7kw9W4AE8UJh.jpg 1 https://pbs.twimg.com/media/CYJQxvJW8AAkkws.jpg 1 https://pbs.twimg.com/media/CwHxsdYVMAAqGCJ.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/689289176076959744/pu/img/hEFkFtmMu_hkTlxK.jpg 1 https://pbs.twimg.com/media/Cv3tU38WcAASFas.jpg 1 https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg 1 https://pbs.twimg.com/media/CYURBGoWYAAKey3.jpg 1 https://pbs.twimg.com/media/C1cs8uAWgAEwbXc.jpg 1 https://pbs.twimg.com/media/CeBMT6-WIAA7Qqf.jpg 1 https://pbs.twimg.com/media/CouEOZhWAAAgFpE.jpg 1 https://pbs.twimg.com/media/CWtsSQAUkAAnWws.jpg 1 https://pbs.twimg.com/media/CttPBt0WIAAcsDE.jpg 1 https://pbs.twimg.com/media/CWZBsjPWsAAZFFl.jpg 1 https://pbs.twimg.com/media/CmExV2qWkAAn_pN.jpg 1 https://pbs.twimg.com/media/CwINKJeW8AYHVkn.jpg 1 https://pbs.twimg.com/media/Cs5ShihWEAAH2ti.jpg 1 https://pbs.twimg.com/media/Ce7LlUeUUAEQkQl.jpg 1 https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg 1 https://pbs.twimg.com/media/C5NFIsjWQAEI93t.jpg 1 https://pbs.twimg.com/media/CmfmvGUWgAAuVKD.jpg 1 https://pbs.twimg.com/media/CrtYRMEWIAAUkCl.jpg 1 https://pbs.twimg.com/media/CWtede2WIAAF_AJ.jpg 1 https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg 1 https://pbs.twimg.com/media/C1xNgraVIAA3EVb.jpg 1 https://pbs.twimg.com/media/CVl7u00WcAAufzR.jpg 1 https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg 1 https://pbs.twimg.com/media/CVWRyylWIAAMltv.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/785872596088811520/pu/img/5O-_BgqdFQu_2Bt7.jpg 1 https://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg 1 https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg 1 https://pbs.twimg.com/media/CWCXj35VEAIFvtk.jpg 1 https://pbs.twimg.com/media/CboQFolWIAE04qE.jpg 1 https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg 1 https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg 1 https://pbs.twimg.com/media/CtoQGu4XgAQgv5m.jpg 1 https://pbs.twimg.com/media/Cbd-o8hWwAE4OFm.jpg 1 https://pbs.twimg.com/media/CwRN8H6WgAASe4X.jpg 1 https://pbs.twimg.com/media/CbN6IW4UYAAyVDA.jpg 1 https://pbs.twimg.com/media/CXcpovWWMAAMcfv.jpg 1 https://pbs.twimg.com/media/CXmd_bsWkAEEXck.jpg 1 https://pbs.twimg.com/media/CsfLUDbXEAAu0VF.jpg 1 https://pbs.twimg.com/media/CXhlRmRUMAIYoFO.jpg 1 https://pbs.twimg.com/media/CwJEIKTWYAAvL-T.jpg 1 https://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg 1 https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg 1 https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg 1 https://pbs.twimg.com/media/CrzATQqWAAEHq2t.jpg 1 https://pbs.twimg.com/media/Ch0T71OWMAA4yIw.jpg 1 https://pbs.twimg.com/media/CVoha_IU4AAZ7vi.jpg 1 https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg 1 https://pbs.twimg.com/media/C0j4EESUsAABtMq.jpg 1 https://pbs.twimg.com/media/CWYk0WxWoAAEwRt.jpg 1 https://pbs.twimg.com/media/Ctc_-BTWEAAQpZh.jpg 1 https://pbs.twimg.com/media/CXNLU6wWkAE0OkJ.jpg 1 https://pbs.twimg.com/media/CoQKNY7XYAE_cuX.jpg 1 https://pbs.twimg.com/media/CVBwNjVWwAAlUFQ.jpg 1 https://pbs.twimg.com/media/CVCIQX7UkAEzqh_.jpg 1 https://pbs.twimg.com/media/CXR44l9WcAAcG_N.jpg 1 https://pbs.twimg.com/media/CdO1u9vWAAApj2V.jpg 1 https://pbs.twimg.com/media/Cf8qDFbWwAEf8M3.jpg 1 https://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg 1 https://pbs.twimg.com/media/ClarNU8VAAEDrDt.jpg 1 https://pbs.twimg.com/media/CXR0WJ_W8AMd_O8.jpg 1 https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg 1 https://pbs.twimg.com/media/CYUsRsbWAAAUt4Y.jpg 1 https://pbs.twimg.com/media/CeCVGEbUYAASeY4.jpg 1 https://pbs.twimg.com/media/Cc_64zVWEAAeXs7.jpg 1 https://pbs.twimg.com/media/CU89schWIAIHQmA.jpg 1 https://pbs.twimg.com/media/CfNUNetW8AAekHx.jpg 1 https://pbs.twimg.com/media/CUDeDoWUYAAD-EM.jpg 1 https://pbs.twimg.com/media/CfYaOeMWQAAGfyP.jpg 1 https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg 1 https://pbs.twimg.com/media/CU3VzVwWwAAAsst.jpg 1 https://pbs.twimg.com/media/CugtKeXWEAAamDZ.jpg 1 https://pbs.twimg.com/media/CtxZTtxUMAEduGo.jpg 1 https://pbs.twimg.com/media/C2n5rUUXEAIXAtv.jpg 1 https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg 1 https://pbs.twimg.com/media/CvQLdotWcAAZn86.jpg 1 https://pbs.twimg.com/media/C4BiOXOXAAAf6IS.jpg 1 https://pbs.twimg.com/media/CWT_lOQWUAAXPaY.jpg 1 https://pbs.twimg.com/media/CWeKTZTWsAA5R3Z.jpg 1 https://pbs.twimg.com/media/CWt0ubZWcAAkFER.jpg 1 https://pbs.twimg.com/media/CsU4NKkW8AUI5eG.jpg 1 https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg 1 https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg 1 https://pbs.twimg.com/media/CmkO57iXgAEOxX9.jpg 1 https://pbs.twimg.com/media/CUYflCXWEAAzQVu.jpg 1 https://pbs.twimg.com/media/Cf4qRcmWEAA9V4h.jpg 1 https://pbs.twimg.com/media/CU3qHNTWsAApGr0.jpg 1 https://pbs.twimg.com/media/Cg7n_-OU8AA5RR1.jpg 1 https://pbs.twimg.com/media/CnSHLFeWgAAwV-I.jpg 1 https://pbs.twimg.com/media/ClhGBCAWIAAFCsz.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/680440290977693696/pu/img/B900g7b-n-zhnwi5.jpg 1 https://pbs.twimg.com/media/CoAqwPTW8AAiJlz.jpg 1 https://pbs.twimg.com/media/CYkoE10WEAAWqxm.jpg 1 https://pbs.twimg.com/media/CVg0SVRWEAAsBrS.jpg 1 https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg 1 https://pbs.twimg.com/media/CWJQ4UmWoAIJ29t.jpg 1 https://pbs.twimg.com/media/CmfssOtXYAAKa_Z.jpg 1 https://pbs.twimg.com/media/CuV8yfxXEAAUlye.jpg 1 https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg 1 https://pbs.twimg.com/media/CUObvUJVEAAnYPF.jpg 1 https://pbs.twimg.com/media/CX_D6AJWwAAnBIw.jpg 1 https://pbs.twimg.com/media/CVRcxJ-WsAAXOhO.jpg 1 https://pbs.twimg.com/media/CeHWFksXIAAyypp.jpg 1 https://pbs.twimg.com/media/C0YgO3DW8AAz98O.jpg 1 https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg 1 https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg 1 https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg 1 https://pbs.twimg.com/media/Cuvau3MW8AAxaRv.jpg 1 https://pbs.twimg.com/media/CtPMhwvXYAIt6NG.jpg 1 https://pbs.twimg.com/media/CteP5H5WcAEhdLO.jpg 1 https://pbs.twimg.com/media/CdXxlFPWwAABaOv.jpg 1 https://pbs.twimg.com/media/CWEcxqWVEAAHyGH.jpg 1 https://pbs.twimg.com/media/CdnnZhhWAAEAoUc.jpg 1 https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg 1 https://pbs.twimg.com/media/CUrW3DWXIAAiRqk.jpg 1 https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg 1 https://pbs.twimg.com/media/ClGawiUWAAAgs0w.jpg 1 https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 https://pbs.twimg.com/media/CwwSaWJWIAASuoY.jpg 1 https://pbs.twimg.com/media/CVbodBOUsAAb7jZ.jpg 1 https://pbs.twimg.com/media/CWCbd8ZWoAAtqoH.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/779377444025499652/pu/img/eIiLDy9F6rPNarEc.jpg 1 https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg 1 https://pbs.twimg.com/media/Cdrtcr-W4AAqi5H.jpg 1 https://pbs.twimg.com/media/CdhUIMSUIAA4wYK.jpg 1 https://pbs.twimg.com/media/CemIBt4WwAQqhVV.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/752334354492362752/pu/img/uWISPc0YRmhUi9Ju.jpg 1 https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg 1 https://pbs.twimg.com/media/CV1ZA3oWEAA1HW_.jpg 1 https://pbs.twimg.com/media/Clfj6RYWMAAFAOW.jpg 1 https://pbs.twimg.com/media/CVRGDrsWsAAUWSF.jpg 1 https://pbs.twimg.com/media/CVlsVs3WIAAja6m.jpg 1 https://pbs.twimg.com/media/CbMuxV5WEAAIBjy.jpg 1 https://pbs.twimg.com/media/CZBUO2UWsAAKehS.jpg 1 https://pbs.twimg.com/media/CzpyM41UoAE1b2w.jpg 1 https://pbs.twimg.com/media/C0jO6aBWEAAM28r.jpg 1 https://pbs.twimg.com/media/CdZI_bpWEAAm1fs.jpg 1 https://pbs.twimg.com/media/Cd9Fn5QUMAAYMT4.jpg 1 https://pbs.twimg.com/media/CUjSRNCXAAQ6Y_8.jpg 1 https://pbs.twimg.com/media/CbB9BTqW8AEVc2A.jpg 1 https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg 1 https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 https://pbs.twimg.com/media/C3dEza1WcAAhlNU.jpg 1 https://pbs.twimg.com/media/CT9OwFIWEAMuRje.jpg 1 https://pbs.twimg.com/media/CYiGvn-UwAEe4wL.jpg 1 https://pbs.twimg.com/media/CXhZom1UwAA4Zz6.jpg 1 https://pbs.twimg.com/media/Ca0ps3AXEAAnp9m.jpg 1 https://pbs.twimg.com/media/Cekj0qwXEAAHcS6.jpg 1 https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg 1 https://pbs.twimg.com/media/CwDjoH3WAAIniIs.jpg 1 https://pbs.twimg.com/media/Cw8JWZ2UsAAJOZ6.jpg 1 https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg 1 https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg 1 https://pbs.twimg.com/media/CUJUk2iWUAAVtOv.jpg 1 https://pbs.twimg.com/media/CXSanNkWkAAqR9M.jpg 1 https://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg 1 https://pbs.twimg.com/media/CT-jNYqW4AAPi2M.jpg 1 https://pbs.twimg.com/media/CWH_FTgWIAAwOUy.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/832273373149413377/pu/img/qOqxM0b48fEarmq6.jpg 1 https://pbs.twimg.com/media/CVl0vFeWoAAMTfg.jpg 1 https://pbs.twimg.com/media/CjQnclkVEAA4pnK.jpg 1 https://pbs.twimg.com/media/CmTm-XQXEAAEyN6.jpg 1 https://pbs.twimg.com/media/CUHkkJpXIAA2w3n.jpg 1 https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg 1 https://pbs.twimg.com/media/CWFFt3_XIAArIYK.jpg 1 https://pbs.twimg.com/media/Cu-t20yWEAAFHXi.jpg 1 https://pbs.twimg.com/media/CnnKCKNWgAAcOB8.jpg 1 https://pbs.twimg.com/media/CUZABzGW4AE5F0k.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/739238016737267712/pu/img/-tLpyiuIzD5zR1et.jpg 1 https://pbs.twimg.com/media/CnF8qVDWYAAh0g1.jpg 1 https://pbs.twimg.com/media/CV4XwYiWoAAHQIF.jpg 1 https://pbs.twimg.com/media/CV6P1lnWIAAUQHk.jpg 1 https://pbs.twimg.com/media/C5ZF4p-XEAEmApg.jpg 1 https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg 1 https://pbs.twimg.com/media/ChvU_DwWMAArx5L.jpg 1 https://pbs.twimg.com/media/C1gLJVpWgAApI3r.jpg 1 https://pbs.twimg.com/media/CWS0q8iU8AE2Srr.jpg 1 https://pbs.twimg.com/media/C31pCN4UcAAOLNH.jpg 1 https://pbs.twimg.com/media/CV6atgoWcAEsdv6.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/683834825250320385/pu/img/yZdrqMlyky4KGOu6.jpg 1 https://pbs.twimg.com/media/CYFlVUFWwAAEsWX.jpg 1 https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg 1 https://pbs.twimg.com/media/CXICiB9UwAE1sKY.jpg 1 https://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg 1 https://pbs.twimg.com/media/C1wGkYoVQAAuC_O.jpg 1 https://pbs.twimg.com/media/CZdEq-AUMAAWayR.jpg 1 https://pbs.twimg.com/media/CaaXN5LUYAEzAh-.jpg 1 https://pbs.twimg.com/media/Cs-H5uhWcAAiNY9.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/800018199223959552/pu/img/3Qp73edtkZO-qWPy.jpg 1 https://pbs.twimg.com/media/ChaXmuAXEAE66KP.jpg 1 https://pbs.twimg.com/media/ClHICHmXEAI_1PS.jpg 1 https://pbs.twimg.com/media/CZWugJsWYAIzVzJ.jpg 1 https://pbs.twimg.com/media/CbOpWswWEAE9kvX.jpg 1 https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg 1 https://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/803638023904559104/pu/img/vxm0Htm5iIV7EOAQ.jpg 1 https://pbs.twimg.com/media/CZIr5gFUsAAvnif.jpg 1 https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg 1 https://pbs.twimg.com/media/CVpgPGwWoAEV7gG.jpg 1 https://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/699072391083880449/pu/img/fMp1-dvLMeio1Kzk.jpg 1 https://pbs.twimg.com/media/CVPrLE2WwAELCxD.jpg 1 https://pbs.twimg.com/media/CZikKBIWYAA40Az.jpg 1 https://pbs.twimg.com/media/CVg4bo8WEAANEEE.jpg 1 https://pbs.twimg.com/media/CZx_wV2UMAArgsJ.jpg 1 https://pbs.twimg.com/media/CYdbvwjWcAEtjYu.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/676776408941662209/pu/img/k-6I3YEZAQtYPBXR.jpg 1 https://pbs.twimg.com/media/C03K2-VWIAAK1iV.jpg 1 https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg 1 https://pbs.twimg.com/media/CaZBErSWEAEdXk_.jpg 1 https://pbs.twimg.com/media/Co88_ujWEAErCg7.jpg 1 https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg 1 https://pbs.twimg.com/media/Cmjlsh1XgAEvhq_.jpg 1 https://pbs.twimg.com/media/CZr8LvyXEAABJ9k.jpg 1 https://pbs.twimg.com/media/CWDbv2yU4AARfeH.jpg 1 https://pbs.twimg.com/media/Ckd-bqVUkAIiyM7.jpg 1 https://pbs.twimg.com/media/CoOTyXJXEAAtjs9.jpg 1 https://pbs.twimg.com/media/Cj6O1G9UYAAIU-1.jpg 1 https://pbs.twimg.com/media/CmyPXNOW8AEtaJ-.jpg 1 https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg 1 https://pbs.twimg.com/media/CXwlw9MWsAAc-JB.jpg 1 https://pbs.twimg.com/media/Ca-XjfiUsAAUa8f.jpg 1 https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg 1 https://pbs.twimg.com/media/CVGYGNYXAAAQ9m-.jpg 1 https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg 1 https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg 1 https://pbs.twimg.com/media/CXMXKKHUMAA1QN3.jpg 1 https://pbs.twimg.com/media/CqBiMAgWAAEJKgI.jpg 1 https://pbs.twimg.com/media/CdYzwuYUIAAHPkB.jpg 1 https://pbs.twimg.com/media/CW9a_h1WwAApmAy.jpg 1 https://pbs.twimg.com/media/CvtONV4WAAAQ3Rn.jpg 1 https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg 1 https://pbs.twimg.com/media/CVmE_fAWIAAlDhU.jpg 1 https://pbs.twimg.com/media/CU_bRIEWcAAUVC7.jpg 1 https://pbs.twimg.com/media/Cd1i8qvUkAE-Jlr.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/805826823359631360/pu/img/yr_fF0TZCR-B70p2.jpg 1 https://pbs.twimg.com/media/CsuaUH2WAAAWJh1.jpg 1 https://pbs.twimg.com/media/CXCGVXyWsAAAVHE.jpg 1 https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg 1 https://pbs.twimg.com/media/Cj1I1fbWYAAOwff.jpg 1 https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg 1 https://pbs.twimg.com/media/CXk4W0qWYAMEMEs.jpg 1 https://pbs.twimg.com/media/CYI10WhWsAAjzii.jpg 1 https://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg 1 https://pbs.twimg.com/media/CeW1tERWAAAA9Q2.jpg 1 https://pbs.twimg.com/media/CY9_BOYWkAAkuzn.jpg 1 https://pbs.twimg.com/media/CZ1riVOWwAATfGf.jpg 1 https://pbs.twimg.com/media/CxlPnoSUcAEXf1i.jpg 1 https://pbs.twimg.com/media/CjbExRKUoAAs089.jpg 1 https://pbs.twimg.com/media/CZ7aplIUsAAq-8s.jpg 1 https://pbs.twimg.com/media/CUyQRzHWoAAhF1D.jpg 1 https://pbs.twimg.com/media/CgsOszGW0AAruKp.jpg 1 https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg 1 https://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg 1 https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg 1 https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg 1 https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg 1 https://pbs.twimg.com/media/Cy2qiTxXcAAtQBH.jpg 1 https://pbs.twimg.com/media/CV0_BSuWIAIvE9k.jpg 1 https://pbs.twimg.com/tweet_video_thumb/CVKtH-4WIAAmiQ5.png 1 https://pbs.twimg.com/media/CU7d2vKUcAAFZyI.jpg 1 https://pbs.twimg.com/media/CooZok_WEAA7oPw.jpg 1 https://pbs.twimg.com/media/Cell8ikWIAACCJ-.jpg 1 https://pbs.twimg.com/media/Cu6I9vvWIAAZG0a.jpg 1 https://pbs.twimg.com/media/CVzpUGUWUAAo7Vn.jpg 1 https://pbs.twimg.com/media/CVCE9uYXIAEtSzR.jpg 1 https://pbs.twimg.com/media/CW7oelWWcAAhyzz.jpg 1 https://pbs.twimg.com/media/CZxhL2yWAAI_DHn.jpg 1 https://pbs.twimg.com/media/Cmfx2oNW8AAGg4H.jpg 1 https://pbs.twimg.com/media/CYK6kf0WMAAzP-0.jpg 1 https://pbs.twimg.com/media/CXAiiHUWkAIN_28.jpg 1 https://pbs.twimg.com/media/Ckmj7mNWYAA4NzZ.jpg 1 https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg 1 https://pbs.twimg.com/media/CUTILFiWcAE8Rle.jpg 1 https://pbs.twimg.com/media/Cw6o1JQXcAAtP78.jpg 1 https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg 1 https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg 1 https://pbs.twimg.com/media/CVrSxy7WsAAFD2F.jpg 1 https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg 1 https://pbs.twimg.com/media/CVEilyCUwAETbJ-.jpg 1 https://pbs.twimg.com/media/CXGGlzvWYAArPfk.jpg 1 https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg 1 https://pbs.twimg.com/media/CqqmWa7WcAAIM-n.jpg 1 https://pbs.twimg.com/media/CVVV1wJWoAEcOyk.jpg 1 https://pbs.twimg.com/media/CVb39_1XIAAMoIv.jpg 1 https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg 1 https://pbs.twimg.com/media/CjvvHBwUoAE55WZ.jpg 1 https://pbs.twimg.com/media/CVg9mTYWIAAu7J6.jpg 1 https://pbs.twimg.com/media/CxuM3oZW8AEhO5z.jpg 1 https://pbs.twimg.com/media/Cbm7IeUXIAA6Lc-.jpg 1 https://pbs.twimg.com/media/CehZ9mLWsAAsn28.jpg 1 https://pbs.twimg.com/media/CWesj06W4AAIKl8.jpg 1 https://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg 1 https://pbs.twimg.com/media/CXwZ3pbWsAAriTv.jpg 1 https://pbs.twimg.com/media/CWofOHUWUAACGVa.jpg 1 https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg 1 https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg 1 https://pbs.twimg.com/media/CWsGnyMVEAAM1Y1.jpg 1 https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg 1 https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg 1 https://pbs.twimg.com/media/CuDCSM-XEAAJw1W.jpg 1 https://pbs.twimg.com/media/CVkGjsxU8AA5OYX.jpg 1 https://pbs.twimg.com/media/CVt8OmIWIAAbxvJ.jpg 1 https://pbs.twimg.com/media/CqQykxrWYAAlD8g.jpg 1 https://pbs.twimg.com/media/Cdtu3WRUkAAsRVx.jpg 1 https://pbs.twimg.com/media/CiI7zVZUoAEzGW7.jpg 1 https://pbs.twimg.com/media/Co5lf-KW8AAIwJw.jpg 1 https://pbs.twimg.com/media/CapsyfkWcAQ41uC.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/685943751555051520/pu/img/rlBvQWaFPUMx1MTi.jpg 1 https://pbs.twimg.com/media/C4UZLZLWYAA0dcs.jpg 1 https://pbs.twimg.com/media/CXVBtX_WwAEuqbP.jpg 1 https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg 1 https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg 1 https://pbs.twimg.com/media/CWZOOIUW4AAQrX_.jpg 1 https://pbs.twimg.com/media/CfAHv83UMAIEQYx.jpg 1 https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg 1 https://pbs.twimg.com/media/C0iX8OOVEAEIpMC.jpg 1 https://pbs.twimg.com/media/ClMl4VLUYAA5qBb.jpg 1 https://pbs.twimg.com/media/CjJ9gQ1WgAAXQtJ.jpg 1 https://pbs.twimg.com/media/C0ilsa1XUAEHK_k.jpg 1 https://pbs.twimg.com/media/CZnW7JGW0AA83mn.jpg 1 https://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg 1 https://pbs.twimg.com/media/Ca9feqDUAAA_z7T.jpg 1 https://pbs.twimg.com/media/CVWWdKLWEAEnSk7.jpg 1 https://pbs.twimg.com/media/CWSEsO9WwAAX-fZ.jpg 1 https://pbs.twimg.com/media/Cksz42EW0AAh2NF.jpg 1 https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg 1 https://pbs.twimg.com/media/CYkURJjW8AEamoI.jpg 1 https://pbs.twimg.com/media/CmKFi-FXEAAeI37.jpg 1 https://pbs.twimg.com/media/CWIngp5WEAAJOy3.jpg 1 https://pbs.twimg.com/media/CVGwAh-W4AAIHJz.jpg 1 https://pbs.twimg.com/media/CaI8Fn0WAAIrFJN.jpg 1 https://pbs.twimg.com/media/CySpCSHXcAAN-qC.jpg 1 https://pbs.twimg.com/media/ChqARqmWsAEI6fB.jpg 1 https://pbs.twimg.com/media/Cbx6nz1WIAA0QSW.jpg 1 https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 https://pbs.twimg.com/media/Cm4phTpWcAAgLsr.jpg 1 https://pbs.twimg.com/media/Cc5Snc7XIAAMidF.jpg 1 https://pbs.twimg.com/media/CswmaHmWAAAbdY9.jpg 1 https://pbs.twimg.com/media/Chfwmd9U4AQTf1b.jpg 1 https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg 1 https://pbs.twimg.com/media/CquFrCKWAAAr32m.jpg 1 https://pbs.twimg.com/media/CXKuiyHUEAAMAGa.jpg 1 https://pbs.twimg.com/media/CdT9n7mW0AQcpZU.jpg 1 https://pbs.twimg.com/tweet_video_thumb/CtTFZZfUsAE5hgp.jpg 1 https://pbs.twimg.com/media/CUyZ6mVW4AI8YWZ.jpg 1 https://pbs.twimg.com/media/CdFDQVgWIAArslx.jpg 1 https://pbs.twimg.com/media/CtUMLzRXgAAbZK5.jpg 1 https://pbs.twimg.com/media/CVLy3zFWoAA93qJ.jpg 1 https://pbs.twimg.com/media/CqA0XcYWAAAzltT.jpg 1 https://pbs.twimg.com/media/Ckdpx5KWsAANF6b.jpg 1 https://pbs.twimg.com/media/CrCh5RgW8AAXW4U.jpg 1 https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg 1 https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg 1 https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg 1 https://pbs.twimg.com/media/CiWWhVNUYAAab_r.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/863553036815355904/pu/img/B6Dos-XOD8l82tK7.jpg 1 https://pbs.twimg.com/media/CVrL5YBWoAA_uPD.jpg 1 https://pbs.twimg.com/media/CfDB3aJXEAAEZNv.jpg 1 https://pbs.twimg.com/media/CV6aMToXIAA7kH4.jpg 1 https://pbs.twimg.com/media/CXMBhXfWEAA4mMI.jpg 1 https://pbs.twimg.com/media/CVlOy3pW4AQ9H1K.jpg 1 https://pbs.twimg.com/media/CWEs1b-WEAEhq82.jpg 1 https://pbs.twimg.com/media/CnLmRiYXEAAO_8f.jpg 1 https://pbs.twimg.com/media/CxFzFAAUAAA5C9z.jpg 1 https://pbs.twimg.com/media/CXXP5O4WEAA4dgS.jpg 1 https://pbs.twimg.com/media/CZbIIM-WkAIPClg.jpg 1 https://pbs.twimg.com/media/ClqGl7fXIAA8nDe.jpg 1 https://pbs.twimg.com/media/CrJjdZmXgAEWLSD.jpg 1 https://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg 1 https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg 1 https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg 1 https://pbs.twimg.com/media/CX5-HslWQAIiXKB.jpg 1 https://pbs.twimg.com/media/CVk9ApFWUAA-S1s.jpg 1 https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg 1 https://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg 1 https://pbs.twimg.com/media/C20HmaKWgAQ6-6X.jpg 1 https://pbs.twimg.com/media/CoFlsGAWgAA2YeV.jpg 1 https://pbs.twimg.com/media/Cm4AeG8XEAAulD2.jpg 1 https://pbs.twimg.com/media/Cez49UqWsAIRQXc.jpg 1 https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg 1 https://pbs.twimg.com/media/CiTEFjDXAAAqU6I.jpg 1 https://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg 1 https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg 1 https://pbs.twimg.com/media/CmKUwImXIAA58f5.jpg 1 https://pbs.twimg.com/media/CYVIToGWQAAEZ_y.jpg 1 https://pbs.twimg.com/media/CuLcNkCXgAEIwK2.jpg 1 https://pbs.twimg.com/media/Cc_ney1W4AANuY3.jpg 1 https://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg 1 https://pbs.twimg.com/media/CV4aqCwWsAIi3OP.jpg 1 https://pbs.twimg.com/media/CkZOGhJWsAAHvPv.jpg 1 https://pbs.twimg.com/media/Cu7dg2RXYAIaGXE.jpg 1 https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg 1 https://pbs.twimg.com/media/CU9LyIMWIAA6OOu.jpg 1 https://pbs.twimg.com/media/Cqkr0wiW8AAn2Oi.jpg 1 https://pbs.twimg.com/media/CZv13u5WYAA6wQe.jpg 1 https://pbs.twimg.com/media/CglAHjAUgAAfxcq.jpg 1 https://pbs.twimg.com/media/CtZtJxAXEAAyPGd.jpg 1 https://pbs.twimg.com/media/C1DZQiTXgAUqgRI.jpg 1 https://pbs.twimg.com/media/Ccg02LiWEAAJHw1.jpg 1 https://pbs.twimg.com/media/CaBVE80WAAA8sGk.jpg 1 https://pbs.twimg.com/media/CV9EvZNUwAAgLCK.jpg 1 https://pbs.twimg.com/media/CU3P82RWEAAIVrE.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/678399528077250560/pu/img/BOjUNHRsYLeSo0hl.jpg 1 https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg 1 https://pbs.twimg.com/media/C2ftAxnWIAEUdAR.jpg 1 https://pbs.twimg.com/media/CU9A8ZuWsAAt_S1.jpg 1 https://pbs.twimg.com/media/C1bEl4zVIAASj7_.jpg 1 https://pbs.twimg.com/media/CdKHWimWoAABs08.jpg 1 https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg 1 https://pbs.twimg.com/media/C33P8PrUcAMiQQs.jpg 1 https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg 1 https://pbs.twimg.com/media/CkiLHCjUUAAPwUr.jpg 1 https://pbs.twimg.com/media/CVOqW8eUkAESTHj.jpg 1 https://pbs.twimg.com/media/CmN5ecNWMAE6pnf.jpg 1 https://pbs.twimg.com/media/CVWGotpXAAMRfGq.jpg 1 https://pbs.twimg.com/media/C0AIwgVXAAAc1Ig.jpg 1 https://pbs.twimg.com/media/ChKDKmIWIAIJP_e.jpg 1 https://pbs.twimg.com/media/CVqPkVoU4AAkXA7.jpg 1 https://pbs.twimg.com/media/Cr2GNdlW8AAbojw.jpg 1 https://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg 1 https://pbs.twimg.com/media/CV1ObvEWcAA7c6i.jpg 1 https://pbs.twimg.com/media/CgxUTS_XEAAC0pv.jpg 1 https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg 1 https://pbs.twimg.com/media/CdElVm7XEAADP6o.jpg 1 https://pbs.twimg.com/media/Crdhh_1XEAAHKHi.jpg 1 https://pbs.twimg.com/media/CdJnJ1dUEAARNcf.jpg 1 https://pbs.twimg.com/media/CXBPbVtWAAA2Vus.jpg 1 https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg 1 https://pbs.twimg.com/media/CYdQktMWsAEI29_.jpg 1 https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg 1 https://pbs.twimg.com/media/Cf4bcm8XEAAX4xV.jpg 1 https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg 1 https://pbs.twimg.com/media/CxZaqh_WQAA7lY3.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/748704826305970176/pu/img/QHuadM5eEygfBeOf.jpg 1 https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg 1 https://pbs.twimg.com/media/CXxGGOsUwAAr62n.jpg 1 https://pbs.twimg.com/media/Czb4iFRXgAIUMiN.jpg 1 https://pbs.twimg.com/media/CVB2TnWUYAA2pAU.jpg 1 https://pbs.twimg.com/media/CrHqwjWXgAAgJSe.jpg 1 https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg 1 https://pbs.twimg.com/media/CXLREjOW8AElfk6.jpg 1 https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/887517108413886465/pu/img/WanJKwssZj4VJvL9.jpg 1 https://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg 1 https://pbs.twimg.com/media/CdM2xRpXEAUsR4k.jpg 1 https://pbs.twimg.com/media/CjbV-lEWgAAr6WY.jpg 1 https://pbs.twimg.com/media/CVUchRHXAAE4rtp.jpg 1 https://pbs.twimg.com/media/CU8mlhoVAAAteS5.jpg 1 https://pbs.twimg.com/media/CYnXcLEUkAAIQOM.jpg 1 https://pbs.twimg.com/media/CerhoBWWAAA5eLL.jpg 1 https://pbs.twimg.com/media/CVQ3EDdWIAINyhM.jpg 1 https://pbs.twimg.com/media/C3YaSnQWAAILgz0.jpg 1 https://pbs.twimg.com/media/Cr7q1VxWIAA5Nm7.jpg 1 https://pbs.twimg.com/media/CpMVxoRXgAAh350.jpg 1 https://pbs.twimg.com/media/CU9HyzSWIAAVcte.jpg 1 https://pbs.twimg.com/media/CaTNMUgUYAAB6vs.jpg 1 https://pbs.twimg.com/media/Cj0xdMBVAAEbDHp.jpg 1 https://pbs.twimg.com/media/CcMBJODUsAI5-A9.jpg 1 https://pbs.twimg.com/media/CerKYG8WAAM1aE-.jpg 1 https://pbs.twimg.com/media/CaLZtmsWQAApbFw.jpg 1 https://pbs.twimg.com/media/CYum3KbWEAArFrI.jpg 1 https://pbs.twimg.com/media/CVBOFTLWwAAzlNi.jpg 1 https://pbs.twimg.com/media/CW-ZRC_WQAAyFrL.jpg 1 https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg 1 https://pbs.twimg.com/media/CoOFmk3WEAAG6ql.jpg 1 https://pbs.twimg.com/media/CVwUyM9WwAAGDjv.jpg 1 https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg 1 https://pbs.twimg.com/media/CVoySqoWUAAWb7N.jpg 1 https://pbs.twimg.com/media/CU3be0SWEAEqb7I.jpg 1 https://pbs.twimg.com/media/CuMqhGrXYAQwRqU.jpg 1 https://pbs.twimg.com/media/CXGaVxOWAAADjhF.jpg 1 https://pbs.twimg.com/media/Ci3Z_idUkAA8RUh.jpg 1 https://pbs.twimg.com/media/CeFrO3qXEAADRbd.jpg 1 https://pbs.twimg.com/media/ClCQzFUUYAA5vAu.jpg 1 https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg 1 https://pbs.twimg.com/media/CwD-eCLWIAA6v0B.jpg 1 https://pbs.twimg.com/media/CWwu6OLUkAEo3gq.jpg 1 https://pbs.twimg.com/media/CYFOP6cWEAAWp-k.jpg 1 https://pbs.twimg.com/media/Co5XExUWgAAL5L_.jpg 1 https://pbs.twimg.com/media/CbEOxQXW0AEIYBu.jpg 1 https://pbs.twimg.com/media/CVkKRqOXIAEX83-.jpg 1 https://pbs.twimg.com/media/CVRVvRMWEAIBKOP.jpg 1 https://pbs.twimg.com/media/C1XqbhXXUAElpfI.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/675740268751138818/pu/img/dVaVeFAVT-lk_1ZV.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/841311812641533952/pu/img/sBUGt8u76n9azPWI.jpg 1 https://pbs.twimg.com/media/CZLwGAIWQAIYsTx.jpg 1 https://pbs.twimg.com/media/CVZd7ttWcAEs2wP.jpg 1 https://pbs.twimg.com/media/CZNexghWAAAYnT-.jpg 1 https://pbs.twimg.com/media/CtYqeNHWgAATqYZ.jpg 1 https://pbs.twimg.com/media/CV56f54WsAEv4kJ.jpg 1 https://pbs.twimg.com/media/CVHIhi2WsAEgdKk.jpg 1 https://pbs.twimg.com/media/CZ2yNKhWEAA_7cb.jpg 1 https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/762471745303355393/pu/img/RKcEUz7-VDipoGKJ.jpg 1 https://pbs.twimg.com/media/CWc5uVPXIAErLYr.jpg 1 https://pbs.twimg.com/media/CU3d0azWUAA38FD.jpg 1 https://pbs.twimg.com/media/CVgyFSyU4AA9p1e.jpg 1 https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg 1 https://pbs.twimg.com/media/Ca_HN8UWEAEB-ga.jpg 1 https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg 1 https://pbs.twimg.com/media/CX-wzZEUwAA4ISM.jpg 1 https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg 1 https://pbs.twimg.com/media/CqVdiBJWIAEDZB4.jpg 1 https://pbs.twimg.com/media/CdzETn4W4AAVU5N.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/754481405627957248/pu/img/YY1eBDOlP9QFC4Bj.jpg 1 https://pbs.twimg.com/media/Cdi3-f7W8AUOm9T.jpg 1 https://pbs.twimg.com/media/CVWJkJXWsAInlZl.jpg 1 https://pbs.twimg.com/media/Cok1_sjXgAU3xpp.jpg 1 https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg 1 https://pbs.twimg.com/media/CZ6VatdWwAAwHly.jpg 1 https://pbs.twimg.com/media/CVRTmz1WcAA4uMF.jpg 1 https://pbs.twimg.com/media/Cz1qo05XUAQ4qXp.jpg 1 https://pbs.twimg.com/media/CcbRIAgXIAQaKHQ.jpg 1 https://pbs.twimg.com/media/Cb3WXMUUMAIuzL8.jpg 1 https://pbs.twimg.com/media/CmZjizYW8AA3FCN.jpg 1 https://pbs.twimg.com/media/CnH87L6XYAAF7I_.jpg 1 https://pbs.twimg.com/media/Crcc7pqXEAAM5O2.jpg 1 https://pbs.twimg.com/media/CfZJTphWAAAl5Ys.jpg 1 https://pbs.twimg.com/media/CUxLJO8U8AAu6Zu.jpg 1 https://pbs.twimg.com/media/CV_r3v4VAAALvwg.jpg 1 https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg 1 https://pbs.twimg.com/media/CU9GjzrUkAAWPh4.jpg 1 https://pbs.twimg.com/media/CWJqN9iWwAAg86R.jpg 1 https://pbs.twimg.com/media/CZsKVxfWQAAXy2u.jpg 1 https://pbs.twimg.com/media/Cfuba6NW4AIeMHk.jpg 1 https://pbs.twimg.com/media/C3XvqILXUAU2nnT.jpg 1 https://pbs.twimg.com/media/C3bzVILWcAUjS5i.jpg 1 https://pbs.twimg.com/media/CVltNgxWEAA5sCJ.jpg 1 https://pbs.twimg.com/media/CV6ZOPqWsAA20Uj.jpg 1 https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg 1 https://pbs.twimg.com/media/CWNl3S9WcAARN34.jpg 1 https://pbs.twimg.com/media/Cww-msrXcAAxm3K.jpg 1 https://pbs.twimg.com/media/Ca0lzzmWwAA5u56.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/684538367950872576/pu/img/kTKOkSU45BS-fpq8.jpg 1 https://pbs.twimg.com/media/CiswCQhWYAI5-QW.jpg 1 https://pbs.twimg.com/media/CVG4i9UWEAAUH3U.jpg 1 https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg 1 https://pbs.twimg.com/media/CVGp4LKWoAAoD03.jpg 1 https://pbs.twimg.com/media/CmDHdCoWkAACTB4.jpg 1 https://pbs.twimg.com/media/CWo_T8gW4AAgJNo.jpg 1 https://pbs.twimg.com/media/CwIougTWcAAMLyq.jpg 1 https://pbs.twimg.com/media/C2JXyARUAAE4gbL.jpg 1 https://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg 1 https://pbs.twimg.com/media/CVzTUGrW4AAirJH.jpg 1 https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg 1 https://pbs.twimg.com/media/CV4UvgNUkAEEnZd.jpg 1 https://pbs.twimg.com/media/CnWGCpdWgAAWZTI.jpg 1 https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg 1 https://pbs.twimg.com/media/CbyW7B0W8AIX8kX.jpg 1 https://pbs.twimg.com/media/CrEPsfWXEAAKvem.jpg 1 https://pbs.twimg.com/media/CZskaEIWIAUeTr5.jpg 1 https://pbs.twimg.com/media/CfkXiX6W4AAmICF.jpg 1 https://pbs.twimg.com/media/C46MWnFVYAUg1RK.jpg 1 https://pbs.twimg.com/media/CXqcOHCUQAAugTB.jpg 1 https://pbs.twimg.com/media/CWoXOfSUAAA4u8g.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/852223481894903808/pu/img/JWNq40ol4DXvHoUP.jpg 1 https://pbs.twimg.com/media/CW8OYajUMAAPRoF.jpg 1 https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg 1 https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg 1 https://pbs.twimg.com/media/CUcl5jeWsAA6ufS.jpg 1 https://pbs.twimg.com/media/Cbn4OqKWwAADGWt.jpg 1 https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 https://pbs.twimg.com/media/CU8XW2dWwAA-Lmc.jpg 1 https://pbs.twimg.com/media/C8W6sY_W0AEmttW.jpg 1 https://pbs.twimg.com/media/CV1HztsWoAAuZwo.jpg 1 https://pbs.twimg.com/media/CVBfrU9WUAApDeV.jpg 1 https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg 1 https://pbs.twimg.com/media/CVGZTboUsAATohd.jpg 1 https://pbs.twimg.com/media/C1xZGkzWIAA8vh4.jpg 1 https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg 1 https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg 1 https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg 1 https://pbs.twimg.com/media/CVzG3yOVAAAqi9I.jpg 1 https://pbs.twimg.com/media/CVbrcZyVAAA5Wpq.jpg 1 https://pbs.twimg.com/media/CcPNS4yW8AAd-Et.jpg 1 https://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg 1 https://pbs.twimg.com/media/CmZqIslWIAQFiqe.jpg 1 https://pbs.twimg.com/media/Cd34FClUMAAnvGP.jpg 1 https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg 1 https://pbs.twimg.com/media/Ck3EribXEAAPhZn.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/768967618174877700/pu/img/4wfsrs0ZnQ5pstXm.jpg 1 https://pbs.twimg.com/media/CYkON6CVAAAPXAc.jpg 1 https://pbs.twimg.com/media/C09p5dJWIAE5qKL.jpg 1 https://pbs.twimg.com/media/CzmSFlKUAAAQOjP.jpg 1 https://pbs.twimg.com/media/CaAhMb1XEAAB6Bz.jpg 1 https://pbs.twimg.com/media/CVl_qbjW4AA8Mam.jpg 1 https://pbs.twimg.com/media/CdUGcLMWAAI42q0.jpg 1 https://pbs.twimg.com/media/ClBqDuDWkAALK2e.jpg 1 https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg 1 https://pbs.twimg.com/media/CrmhYYIXEAEcyYY.jpg 1 https://pbs.twimg.com/media/CotUFZEWcAA2Pku.jpg 1 https://pbs.twimg.com/media/CrOBSfgXgAABsTE.jpg 1 https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 1 https://pbs.twimg.com/media/CWEBOFYWwAA-O2c.jpg 1 https://pbs.twimg.com/media/CmieRQRXgAA8MV3.jpg 1 https://pbs.twimg.com/media/CVKVM3NW4AAdi1e.jpg 1 https://pbs.twimg.com/media/CwglhZVXgAAc3_w.jpg 1 https://pbs.twimg.com/media/Cfh2w6HWIAIIYAF.jpg 1 https://pbs.twimg.com/media/Crsgi9dWEAApQd8.jpg 1 https://pbs.twimg.com/media/Cojc_Q0WcAAqi_K.jpg 1 https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg 1 https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg 1 https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg 1 https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg 1 https://pbs.twimg.com/media/CXcebTeWsAUQJ-J.jpg 1 https://pbs.twimg.com/media/CUoDk8mWsAAMyBL.jpg 1 https://pbs.twimg.com/media/Caohi_hWcAAQCni.jpg 1 https://pbs.twimg.com/media/CXRCXesVAAArSXt.jpg 1 https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg 1 https://pbs.twimg.com/media/CVq2UHwWEAAduMw.jpg 1 https://pbs.twimg.com/media/CX1AUQ2UAAAC6s-.jpg 1 https://pbs.twimg.com/media/CcZn6RWWIAAmOZG.jpg 1 https://pbs.twimg.com/media/CVweVUfW4AACPwI.jpg 1 https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg 1 https://pbs.twimg.com/media/Cn7U2xlW8AI9Pqp.jpg 1 https://pbs.twimg.com/media/CURwm3cUkAARcO6.jpg 1 https://pbs.twimg.com/media/Cc9rZlBWwAA56Ra.jpg 1 https://pbs.twimg.com/media/CaGW8JQUMAEVtLl.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/859196962498805762/pu/img/-yBpr4-o4GJZECYE.jpg 1 https://pbs.twimg.com/media/CulDnZpWcAAGbZ-.jpg 1 https://pbs.twimg.com/media/Cc1yRE2WoAAgxFQ.jpg 1 https://pbs.twimg.com/media/C1L7OVVWQAIQ6Tt.jpg 1 https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg 1 https://pbs.twimg.com/media/CX2NJmRWYAAxz_5.jpg 1 https://pbs.twimg.com/media/CXB4nWnWEAAhLTX.jpg 1 https://pbs.twimg.com/media/Cdjiqi6XIAIUOg-.jpg 1 https://pbs.twimg.com/media/Cb8lWafWEAA2q93.jpg 1 https://pbs.twimg.com/media/CZavgf4WkAARpFM.jpg 1 https://pbs.twimg.com/media/CcpaoR9WAAAKlJJ.jpg 1 https://pbs.twimg.com/media/CX6v_JOWsAE0beZ.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/821149477142556673/pu/img/88_DV098c60pC5AA.jpg 1 https://pbs.twimg.com/media/CdE7ZktXIAEiWLj.jpg 1 https://pbs.twimg.com/media/CWMqV7WUYAEEClG.jpg 1 https://pbs.twimg.com/media/CU3cSG8W4AIAePH.jpg 1 https://pbs.twimg.com/media/CzFp3FNW8AAfvV8.jpg 1 https://pbs.twimg.com/media/CVrA-rIWEAANxwQ.jpg 1 https://pbs.twimg.com/media/CZa1QnSWEAAEOVr.jpg 1 https://pbs.twimg.com/media/CVKC1IfWIAAsQks.jpg 1 https://pbs.twimg.com/media/CnQ9Vq1WEAEYP01.jpg 1 https://pbs.twimg.com/media/CYASi6FWQAEQMW2.jpg 1 https://pbs.twimg.com/media/CYka1NTWMAAOclP.jpg 1 https://pbs.twimg.com/media/CV0zkzEU4AAzLc5.jpg 1 https://pbs.twimg.com/media/CqPXYLLXEAAU2HC.jpg 1 https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg 1 https://pbs.twimg.com/media/Cn7tyyZWYAAPlAY.jpg 1 https://pbs.twimg.com/media/CU7SW39WwAAL8Rw.jpg 1 https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg 1 https://pbs.twimg.com/media/CeMWubMWwAA6GwF.jpg 1 https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg 1 https://pbs.twimg.com/media/CpcWknPXYAAeLP9.jpg 1 https://pbs.twimg.com/media/CT9lXGsUcAAyUFt.jpg 1 https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg 1 https://pbs.twimg.com/media/CafdAWCW0AE3Igl.jpg 1 https://pbs.twimg.com/media/ClrK-rGWAAENcAa.jpg 1 https://pbs.twimg.com/media/CWOH4s9U8AEtkmQ.jpg 1 https://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg 1 https://pbs.twimg.com/media/Cw1WKu1UQAAvWsu.jpg 1 https://pbs.twimg.com/media/CZc-u7IXEAQHV1N.jpg 1 https://pbs.twimg.com/media/CsKmMB2WAAAXcAy.jpg 1 https://pbs.twimg.com/media/C1V-K63UAAEUHqw.jpg 1 https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg 1 https://pbs.twimg.com/media/CV_ZAhcUkAUeKtZ.jpg 1 https://pbs.twimg.com/media/CVWy9v-VAAALSoE.jpg 1 https://pbs.twimg.com/media/CUr9NjgU8AEpf5w.jpg 1 https://pbs.twimg.com/media/CVg6L2hWIAAYuEb.jpg 1 https://pbs.twimg.com/media/CVQ-kfWWoAAXV15.jpg 1 https://pbs.twimg.com/media/CXrIntsUsAEkv0d.jpg 1 https://pbs.twimg.com/media/CxeseRgUoAM_SQK.jpg 1 https://pbs.twimg.com/media/CYOONfZW8AA7IOA.jpg 1 https://pbs.twimg.com/media/CYFZXdiU0AAc_kw.jpg 1 https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg 1 https://pbs.twimg.com/media/CbTRPXdW8AQMZf7.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/693486485266247680/pu/img/KhapmUYPQTpbwNf8.jpg 1 https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg 1 https://pbs.twimg.com/media/Cm42t5vXEAAv4CS.jpg 1 https://pbs.twimg.com/media/CZHM60BWIAA4AY4.jpg 1 https://pbs.twimg.com/media/CWxDaXHWsAAWV8W.jpg 1 https://pbs.twimg.com/media/CWT7imQXIAMwpQ2.jpg 1 https://pbs.twimg.com/media/CdSWcc1XIAAXc6H.jpg 1 https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg 1 https://pbs.twimg.com/media/CjlpmZaUgAED54W.jpg 1 https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg 1 https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg 1 https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg 1 https://pbs.twimg.com/media/C2PjgjQXcAAc4Uu.jpg 1 https://pbs.twimg.com/media/CfkG_PMWsAAH0MZ.jpg 1 https://pbs.twimg.com/media/CUifpn4WUAAS5X3.jpg 1 https://pbs.twimg.com/media/Coak48zWAAAhBxV.jpg 1 https://pbs.twimg.com/media/CVEkZaPXIAEw5vr.jpg 1 https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg 1 https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 https://pbs.twimg.com/media/Cn7gaHrWIAAZJMt.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/751456786360725504/pu/img/hWqfIQ29A0cBv6f_.jpg 1 https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg 1 https://pbs.twimg.com/media/CXvlQ2zW8AAE0tp.jpg 1 https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg 1 https://pbs.twimg.com/media/Ca_ClYOW0AAsvpE.jpg 1 https://pbs.twimg.com/media/CxBafisWQAAtJ1X.jpg 1 https://pbs.twimg.com/media/CU3tUC4WEAAoZby.jpg 1 https://pbs.twimg.com/media/ClhQJUUWAAEVpBX.jpg 1 https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg 1 https://pbs.twimg.com/media/CXRTw_5WMAAUDVp.jpg 1 https://pbs.twimg.com/media/CnhXzpvW8AAQ1MB.jpg 1 https://pbs.twimg.com/media/CYyucekVAAESj8K.jpg 1 https://pbs.twimg.com/media/CllNnkWWMAEDIAR.jpg 1 https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg 1 https://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg 1 https://pbs.twimg.com/media/CjeY5DKXEAA3WkD.jpg 1 https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg 1 https://pbs.twimg.com/media/CW4q7jDWkAA2y8g.jpg 1 https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg 1 https://pbs.twimg.com/media/CdZTgynWwAATZcx.jpg 1 https://pbs.twimg.com/media/CxZiLcLXUAApMVy.jpg 1 https://pbs.twimg.com/media/CjQ4radW0AENP-m.jpg 1 https://pbs.twimg.com/media/CjJzMlBUoAADMLx.jpg 1 https://pbs.twimg.com/media/CYp4vFrVAAEs9AX.jpg 1 https://pbs.twimg.com/media/CefKBOuWIAAIlKD.jpg 1 https://pbs.twimg.com/media/Ch3hOGWUYAE7w0y.jpg 1 https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg 1 https://pbs.twimg.com/media/Cx-itFWWIAAZu7l.jpg 1 https://pbs.twimg.com/media/CVl-Z0dWcAAs7wr.jpg 1 https://pbs.twimg.com/media/C0kFzOQUoAAt6yb.jpg 1 https://pbs.twimg.com/media/CWT2MUgWIAECWig.jpg 1 https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg 1 https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg 1 https://pbs.twimg.com/media/CqgSl4DWcAA-x-o.jpg 1 https://pbs.twimg.com/media/CoKqIndWgAAattd.jpg 1 https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg 1 https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg 1 https://pbs.twimg.com/media/CWx2FaLWcAEQ3vh.jpg 1 https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg 1 https://pbs.twimg.com/media/Cdtk414WoAIUG0v.jpg 1 https://pbs.twimg.com/media/ClW9w7mWEAEFN1k.jpg 1 https://pbs.twimg.com/media/Cc0pLU0WAAEfGEw.jpg 1 https://pbs.twimg.com/media/CYs3TKzUAAAF9A2.jpg 1 https://pbs.twimg.com/media/CZDMMY0WEAAQYjQ.jpg 1 https://pbs.twimg.com/media/C0aXTLqXEAADxBi.jpg 1 https://pbs.twimg.com/media/CZV-c9NVIAEWtiU.jpg 1 https://pbs.twimg.com/media/CY-Fn1FWEAQhzhs.jpg 1 https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg 1 https://pbs.twimg.com/media/CpdfpzKWYAAWSUi.jpg 1 https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg 1 https://pbs.twimg.com/media/CwNwmxvXEAEJ54Z.jpg 1 https://pbs.twimg.com/media/CqLh4yJWcAAHomv.jpg 1 https://pbs.twimg.com/media/CddvvSwWoAUObQw.jpg 1 https://pbs.twimg.com/media/CmgBZ7kWcAAlzFD.jpg 1 https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg 1 https://pbs.twimg.com/media/CmAC7ehXEAAqSuW.jpg 1 https://pbs.twimg.com/media/CVHEju0XAAEUZRY.jpg 1 https://pbs.twimg.com/media/CUbfGbbWoAApZth.jpg 1 https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg 1 https://pbs.twimg.com/media/Ca0aIR9WcAAHiPy.jpg 1 https://pbs.twimg.com/media/CbcfUxoUAAAlHGK.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/861288473281437696/pu/img/RERGmRgPyaaaB-tB.jpg 1 https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg 1 https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg 1 https://pbs.twimg.com/media/ChpuRyvVAAARMoq.jpg 1 https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg 1 https://pbs.twimg.com/media/C5OOxY6WAAAxERz.jpg 1 https://pbs.twimg.com/media/Cate3eLUcAEIuph.jpg 1 https://pbs.twimg.com/media/CbC6JL_WEAI_PhH.jpg 1 https://pbs.twimg.com/media/CUi_UtnWIAEtfqz.jpg 1 https://pbs.twimg.com/media/CbboKP4WIAAw8xq.jpg 1 https://pbs.twimg.com/media/CewKKiOWwAIe3pR.jpg 1 https://pbs.twimg.com/media/Cy8_qt0UUAAHuuN.jpg 1 https://pbs.twimg.com/media/CmpVaOZWIAAp3z6.jpg 1 https://pbs.twimg.com/media/CaFg41YWkAAdOjy.jpg 1 https://pbs.twimg.com/media/Cxge6AdUQAAvXLB.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/821407155391725568/pu/img/AJC07gFJDDBuwNTD.jpg 1 https://pbs.twimg.com/media/CbOhMUDXIAACIWR.jpg 1 https://pbs.twimg.com/media/Ch5U4FzXEAAShhF.jpg 1 https://pbs.twimg.com/media/CVWicBbUYAIomjC.jpg 1 https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg 1 https://pbs.twimg.com/media/Cl4-pevXEAAb8VW.jpg 1 https://pbs.twimg.com/media/CrJVupHXgAA4Dkk.jpg 1 https://pbs.twimg.com/media/CXQ4EwQWwAEVaUf.jpg 1 https://pbs.twimg.com/media/CUsd2TfWwAAmdjb.jpg 1 https://pbs.twimg.com/media/CXlN1-EWMAQdwXK.jpg 1 https://pbs.twimg.com/media/Ci8Pfg_UUAA2m9i.jpg 1 https://pbs.twimg.com/media/C4uLLGuUoAAkIHm.jpg 1 https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg 1 https://pbs.twimg.com/media/Cmf5WLGWYAAcmRw.jpg 1 https://pbs.twimg.com/media/CUd9ivxWUAAuXSQ.jpg 1 https://pbs.twimg.com/media/CZGofjJW0AINjN9.jpg 1 https://pbs.twimg.com/media/C2OtWr0VQAEnS9r.jpg 1 https://pbs.twimg.com/media/CgxXf1TWYAEjY61.jpg 1 https://pbs.twimg.com/media/ChZr8SdWIAAVQKt.jpg 1 https://pbs.twimg.com/media/CemOGNjWQAEoN7R.jpg 1 https://pbs.twimg.com/media/CYx-tGaUoAAEXV8.jpg 1 https://pbs.twimg.com/media/Ccl0-HVVAAAf8aK.jpg 1 https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg 1 https://pbs.twimg.com/media/CbYac83W4AAUH1O.jpg 1 https://pbs.twimg.com/media/CUGlb6iUwAITEbW.jpg 1 https://pbs.twimg.com/media/CU8AwZ_UsAA-Lbu.jpg 1 https://pbs.twimg.com/media/C2GBJADWIAQvcNb.jpg 1 https://pbs.twimg.com/media/CZSz3vWXEAACElU.jpg 1 https://pbs.twimg.com/media/CoUaSKEXYAAYsAl.jpg 1 https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg 1 https://pbs.twimg.com/media/CcZYJniXEAAEJRF.jpg 1 https://pbs.twimg.com/media/Ca3i7CzXIAMLhg8.jpg 1 https://pbs.twimg.com/media/CUyDgChWUAAmNSI.jpg 1 https://pbs.twimg.com/media/CV6czeEWEAEdChp.jpg 1 https://pbs.twimg.com/media/CV_7CV6XIAEV05u.jpg 1 https://pbs.twimg.com/media/Ce6b4MPWwAA22Xm.jpg 1 https://pbs.twimg.com/media/CVLpciDW4AAleh-.jpg 1 https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg 1 https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg 1 https://pbs.twimg.com/media/C0Kf9PtWQAEW4sE.jpg 1 https://pbs.twimg.com/media/Cf9W1J-UMAErahM.jpg 1 https://pbs.twimg.com/media/CT-RugiWIAELEaq.jpg 1 https://pbs.twimg.com/media/CtX2Kr9XYAAuxrM.jpg 1 https://pbs.twimg.com/media/CvfX2AnWYAAQTay.jpg 1 https://pbs.twimg.com/media/CdyE2x1W8AAe0TG.jpg 1 https://pbs.twimg.com/media/CbMFFssWIAAyuOd.jpg 1 https://pbs.twimg.com/media/CzaY5UdUoAAC91S.jpg 1 https://pbs.twimg.com/media/CUeBiqgXAAARLbj.jpg 1 https://pbs.twimg.com/media/CeCfMPDW0AAAEUj.jpg 1 https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg 1 https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg 1 https://pbs.twimg.com/media/CbcA673XIAAsytQ.jpg 1 https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg 1 https://pbs.twimg.com/media/CZIpimOWcAETFRt.jpg 1 https://pbs.twimg.com/media/CUx2F6lVEAAvFev.jpg 1 https://pbs.twimg.com/media/CzBD7MWVIAA5ptx.jpg 1 https://pbs.twimg.com/media/CWHzzFGXIAA0Y_H.jpg 1 https://pbs.twimg.com/media/CsB-MYiXgAEQU20.jpg 1 https://pbs.twimg.com/media/CWE_x33UwAEE3no.jpg 1 https://pbs.twimg.com/media/CV9SrABU4AQI46z.jpg 1 https://pbs.twimg.com/media/CXffar9WYAArfpw.jpg 1 https://pbs.twimg.com/media/CmjKOzVWcAAQN6w.jpg 1 https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg 1 https://pbs.twimg.com/media/Cb_r8qTUsAASgdF.jpg 1 https://pbs.twimg.com/media/CU7GehOUYAA9nn-.jpg 1 https://pbs.twimg.com/media/Ck39W0JWUAApgnH.jpg 1 https://pbs.twimg.com/media/CW7iddWUsAElUC0.jpg 1 https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg 1 https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/685663358637486080/pu/img/3cXSHFZAgJQ_dDCf.jpg 1 https://pbs.twimg.com/media/Cs0HuUTWcAUpSE8.jpg 1 https://pbs.twimg.com/media/CVbvjKqW4AA_CuD.jpg 1 https://pbs.twimg.com/media/CXnAdosWAAEMGCM.jpg 1 https://pbs.twimg.com/media/Cg-o3w0WgAANXdv.jpg 1 https://pbs.twimg.com/media/CVlUfBbUwAQyfcD.jpg 1 https://pbs.twimg.com/media/CWpTLOYWsAEDhcU.jpg 1 https://pbs.twimg.com/media/Cgva-QqUUAA7Hv9.jpg 1 https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg 1 https://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg 1 https://pbs.twimg.com/media/CVgGc9hWIAIe1bn.jpg 1 https://pbs.twimg.com/media/Cb7HCMkWEAAV9zY.jpg 1 https://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg 1 https://pbs.twimg.com/media/CWO0m8tUwAAB901.jpg 1 https://pbs.twimg.com/media/CVHMyHMWwAALYXs.jpg 1 https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg 1 https://pbs.twimg.com/media/CX7Y_ByWwAEJdUy.jpg 1 https://pbs.twimg.com/media/CXsChyjW8AQJ16C.jpg 1 https://pbs.twimg.com/media/CVUiMUeW4AEQgkU.jpg 1 https://pbs.twimg.com/media/CmkBKuwWgAAamOI.jpg 1 https://pbs.twimg.com/media/Cop9VVUXgAAhX9u.jpg 1 https://pbs.twimg.com/media/C0EyPZbXAAAceSc.jpg 1 https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg 1 https://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg 1 https://pbs.twimg.com/media/Cs1fjyqWIAE2jop.jpg 1 https://pbs.twimg.com/media/Cz61ZD4W8AAcJEU.jpg 1 https://pbs.twimg.com/media/CVBY3e7XIAAAE4Y.jpg 1 https://pbs.twimg.com/media/CkyvqnNWYAQxQY1.jpg 1 https://pbs.twimg.com/media/CURiQMnUAAAPT2M.jpg 1 https://pbs.twimg.com/media/Cct1G6vVAAI9ZjF.jpg 1 https://pbs.twimg.com/media/CV1WXsmWcAAgQ56.jpg 1 https://pbs.twimg.com/media/CfxcKU6W8AE-wEx.jpg 1 https://pbs.twimg.com/media/CVquIDRW4AEJrPk.jpg 1 https://pbs.twimg.com/media/ClB09z0WYAAA1jz.jpg 1 https://pbs.twimg.com/media/CYkrNIVWcAMswmP.jpg 1 https://pbs.twimg.com/media/CVRfyZxWUAAFIQR.jpg 1 https://pbs.twimg.com/media/Cvom3ZJXEAE29TD.jpg 1 https://pbs.twimg.com/media/CVzRXmXWIAA0Fkr.jpg 1 https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg 1 https://pbs.twimg.com/media/CaP2bS8WYAAsMdx.jpg 1 https://pbs.twimg.com/media/CY8SocAWsAARuyh.jpg 1 https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg 1 https://pbs.twimg.com/media/CgNLS1PW8AAxWSN.jpg 1 https://pbs.twimg.com/media/CfeukpmW4AEGjOE.jpg 1 https://pbs.twimg.com/media/Cl2LdofXEAATl7x.jpg 1 https://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg 1 https://pbs.twimg.com/media/CUgb21RXIAAlff7.jpg 1 https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/761672828462718981/pu/img/R00UYAAWB3GtuHdI.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/679111114081370114/pu/img/hFca8BHjRopgD0cM.jpg 1 https://pbs.twimg.com/media/CVWGMQMWUAA7aOM.jpg 1 https://pbs.twimg.com/media/CsASZqRW8AA3Szw.jpg 1 https://pbs.twimg.com/media/CaLWOPfWkAAo2Dt.jpg 1 https://pbs.twimg.com/media/CVWbitUW4AAzclx.jpg 1 https://pbs.twimg.com/media/CVUUU_EWoAAxABV.jpg 1 https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg 1 https://pbs.twimg.com/media/CWuTbAKUsAAvZHh.jpg 1 https://pbs.twimg.com/media/Cl-EXHSWkAE2IN2.jpg 1 https://pbs.twimg.com/media/CUize-0WEAAerAK.jpg 1 https://pbs.twimg.com/media/ClzoJz7WYAELHSf.jpg 1 https://pbs.twimg.com/media/CVaKn75XAAEU09u.jpg 1 https://pbs.twimg.com/media/Ch-TXpFXAAAwPGf.jpg 1 https://pbs.twimg.com/media/Cd4CBQFW8AAY3ND.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/748568890477789184/pu/img/1MzP7FuodJdHw8zA.jpg 1 https://pbs.twimg.com/media/CVFBzpXVEAAHIOv.jpg 1 https://pbs.twimg.com/media/CVBCFkyU4AE2Wcr.jpg 1 https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg 1 https://pbs.twimg.com/media/CW-dU34WQAANBGy.jpg 1 https://pbs.twimg.com/media/CVHRIiqWEAAj98K.jpg 1 https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg 1 https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg 1 https://pbs.twimg.com/media/CU8v-rdXIAId12Z.jpg 1 https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg 1 https://pbs.twimg.com/media/CV0rL7RWEAAbhqm.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/881535971568889856/pu/img/9bawiZ--8FKywTkz.jpg 1 https://pbs.twimg.com/media/CyJtSmDUAAA2F9x.jpg 1 https://pbs.twimg.com/media/CVO3KodXAAAj1de.jpg 1 https://pbs.twimg.com/media/CckG63qUsAALbIr.jpg 1 https://pbs.twimg.com/media/Clb5pLJWMAE-QS1.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/751250895690731520/pu/img/eziHbU1KbgZg-ijN.jpg 1 https://pbs.twimg.com/media/C0xz04SVIAAeyDb.jpg 1 https://pbs.twimg.com/media/CyysDQlVIAAYgrl.jpg 1 https://pbs.twimg.com/media/CUDmZIkWcAAIPPe.jpg 1 https://pbs.twimg.com/media/CtiIj0AWcAEBDvw.jpg 1 https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg 1 https://pbs.twimg.com/media/CcBwOn0XEAA7bNQ.jpg 1 https://pbs.twimg.com/media/CVVIjGbWwAAxkN0.jpg 1 https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg 1 https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg 1 https://pbs.twimg.com/media/CbG_QRJXEAALVWy.jpg 1 https://pbs.twimg.com/media/Ci3GDeyUoAAKOxn.jpg 1 https://pbs.twimg.com/media/CVMBL_LWUAAsvrL.jpg 1 https://pbs.twimg.com/media/CXXdJ7CVAAALu23.jpg 1 https://pbs.twimg.com/media/CWYAEINW4AIuw8P.jpg 1 https://pbs.twimg.com/media/CYZvRttWYAE_RXc.jpg 1 https://pbs.twimg.com/media/C0PlCQjXAAA9TIh.jpg 1 https://pbs.twimg.com/media/CYznjAcUEAQ5Zq7.jpg 1 https://pbs.twimg.com/media/CwB_i-zXEAEiP29.jpg 1 https://pbs.twimg.com/media/CVG_2I-WIAASKSS.jpg 1 https://pbs.twimg.com/media/CaBP7i9W0AAJrIs.jpg 1 https://pbs.twimg.com/media/CcgfcANW4AA9hzr.jpg 1 https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/753420390836346880/pu/img/ZHLvYxSHYuQK3uXi.jpg 1 https://pbs.twimg.com/media/CVkMRUeWsAA9bMh.jpg 1 https://pbs.twimg.com/tweet_video_thumb/CeGGkWuUUAAYWU1.jpg 1 https://pbs.twimg.com/media/CWEzo19WoAEiOCj.jpg 1 https://pbs.twimg.com/media/CrMmVqyWcAIDCHI.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/706644797256241152/pu/img/NTqvmIUQExGmKFSR.jpg 1 https://pbs.twimg.com/media/CVKZsHtWwAA6gPj.jpg 1 https://pbs.twimg.com/media/C52pYJXWgAA2BEf.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/762035577168560129/pu/img/kD4TeHRRiSKgOyDx.jpg 1 https://pbs.twimg.com/media/C2Tvo20XcAAhNL9.jpg 1 https://pbs.twimg.com/media/CY91OENWUAE5agj.jpg 1 https://pbs.twimg.com/media/Cfh7j6CWQAAndTd.jpg 1 https://pbs.twimg.com/media/CyEg2AXUsAA1Qpf.jpg 1 https://pbs.twimg.com/media/Ct8qn8EWIAAk9zP.jpg 1 https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg 1 https://pbs.twimg.com/media/C5UAqgyXAAAbMWH.jpg 1 https://pbs.twimg.com/media/CoEwMXeWEAAaIz5.jpg 1 https://pbs.twimg.com/media/Cc6jcYRXIAAFuox.jpg 1 https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg 1 https://pbs.twimg.com/media/CrcPjh0WcAA_SPT.jpg 1 https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg 1 https://pbs.twimg.com/media/CXBBurSWMAELewi.jpg 1 https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg 1 https://pbs.twimg.com/media/CewgnHAXEAAdbld.jpg 1 https://pbs.twimg.com/media/ChQRsYaW0AETD7z.jpg 1 https://pbs.twimg.com/media/CmUciKgWIAA97sH.jpg 1 https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg 1 https://pbs.twimg.com/media/CVUovvHWwAAD-nu.jpg 1 https://pbs.twimg.com/media/CX1ye7HUMAADDzh.jpg 1 https://pbs.twimg.com/media/CXBdJxLUsAAWql2.jpg 1 https://pbs.twimg.com/media/CrrtqjdXEAINleR.jpg 1 https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg 1 https://pbs.twimg.com/media/CWskEqnWUAAQZW_.jpg 1 https://pbs.twimg.com/media/CkTFEe-W0AA90m1.jpg 1 https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg 1 https://pbs.twimg.com/media/CW4UtmYWsAAEjqA.jpg 1 https://pbs.twimg.com/media/Cdr4jO2UAAAIo6W.jpg 1 https://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg 1 https://pbs.twimg.com/media/CpJDWqhW8AAFt45.jpg 1 https://pbs.twimg.com/media/Ce99GhLW8AAHG38.jpg 1 https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg 1 https://pbs.twimg.com/media/CsWuVEdWcAAqbe9.jpg 1 https://pbs.twimg.com/media/CVhEoq4WcAE8pBm.jpg 1 https://pbs.twimg.com/media/CVl2ydUWsAA1jD6.jpg 1 https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg 1 https://pbs.twimg.com/media/CVwx3dQXAAA0ksL.jpg 1 https://pbs.twimg.com/media/C0khWkVXEAI389B.jpg 1 https://pbs.twimg.com/media/CZgRmk0UcAAxeuQ.jpg 1 https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg 1 https://pbs.twimg.com/media/CgC-gMCWcAAawUE.jpg 1 https://pbs.twimg.com/media/CiIuBwCUgAAAGbz.jpg 1 https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg 1 https://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg 1 https://pbs.twimg.com/media/CWPQwmJWUAAu_At.jpg 1 https://pbs.twimg.com/media/CmU2DVWWgAArvp3.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/875144175078957056/pu/img/BRi_l7vUdpb93Knf.jpg 1 https://pbs.twimg.com/media/CwIa5CjW8AErZgL.jpg 1 https://pbs.twimg.com/media/CXbiQHmWcAAt6Lm.jpg 1 https://pbs.twimg.com/media/Crcacf9WgAEcrMh.jpg 1 https://pbs.twimg.com/media/CbNO0DaW0AARcki.jpg 1 https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg 1 https://pbs.twimg.com/media/CW37xZbUoAAUXe5.jpg 1 https://pbs.twimg.com/media/CUi5M7TXIAAY0gj.jpg 1 https://pbs.twimg.com/media/CWzSMmAWsAAyB1u.jpg 1 https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg 1 https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg 1 https://pbs.twimg.com/media/C3mOnZ_XUAAjr2V.jpg 1 https://pbs.twimg.com/media/CXRmDfWWMAADCdc.jpg 1 https://pbs.twimg.com/media/CVPeX2dWwAEwyaR.jpg 1 https://pbs.twimg.com/media/CXKxkseW8AAjAMY.jpg 1 https://pbs.twimg.com/media/CdSQFWOWAAApgfq.jpg 1 https://pbs.twimg.com/media/CUi9ARGWUAEyWqo.jpg 1 https://pbs.twimg.com/media/C0uXObSXUAAIzmV.jpg 1 https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg 1 https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg 1 https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg 1 https://pbs.twimg.com/media/C17n1nrWQAIErU3.jpg 1 https://pbs.twimg.com/media/CVvZ0KTWwAAdXKV.jpg 1 https://pbs.twimg.com/media/CVG2l9jUYAAwg-w.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/887343120832229379/pu/img/6HSuFrW1lzI_9Mht.jpg 1 https://pbs.twimg.com/media/CjgYyuvWkAAHU8g.jpg 1 https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg 1 https://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg 1 https://pbs.twimg.com/media/CV_4ShmUYAA3wNu.jpg 1 https://pbs.twimg.com/media/CVqoPslWEAEk7EC.jpg 1 https://pbs.twimg.com/media/Cl1s1p7WMAA44Vk.jpg 1 https://pbs.twimg.com/media/CV_MmGZU8AAggM6.jpg 1 https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg 1 https://pbs.twimg.com/media/CcfQgHVWoAAxauy.jpg 1 https://pbs.twimg.com/media/CV54UQTXAAAGf-j.jpg 1 https://pbs.twimg.com/media/Ca5uv7RVAAA_QEg.jpg 1 https://pbs.twimg.com/media/CWeU5LBWEAA8F0J.jpg 1 https://pbs.twimg.com/media/ClRoXGwWIAEVVzc.jpg 1 https://pbs.twimg.com/media/CVv84VDUEAEm3dW.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/819924138965999617/pu/img/6OIToyT9eLESHXLU.jpg 1 https://pbs.twimg.com/media/C4GzztSWAAA_qi4.jpg 1 https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg 1 https://pbs.twimg.com/media/Cm8JwBqW8AAFOEn.jpg 1 https://pbs.twimg.com/media/CrR-vVfXEAAk6Gg.jpg 1 https://pbs.twimg.com/media/Clwgf4bWgAAB15c.jpg 1 https://pbs.twimg.com/media/CdoTbL_XIAAitq2.jpg 1 https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg 1 https://pbs.twimg.com/media/CvLD-mbWYAAFI8w.jpg 1 https://pbs.twimg.com/media/CUGaXDhW4AY9JUH.jpg 1 https://pbs.twimg.com/tweet_video_thumb/CZ0mhduWkAICSGe.png 1 https://pbs.twimg.com/media/CXNAsm6WsAEST9R.jpg 1 https://pbs.twimg.com/media/CrMxZzgWIAQUxzx.jpg 1 https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg 1 https://pbs.twimg.com/media/C1qi26rW8AMaj9K.jpg 1 https://pbs.twimg.com/media/Ct4URfWUAAQ7lKe.jpg 1 https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg 1 https://pbs.twimg.com/media/CbYmRHyWEAASNzm.jpg 1 https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg 1 https://pbs.twimg.com/media/CkOb3FXW0AAUL_U.jpg 1 https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg 1 https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg 1 https://pbs.twimg.com/media/Cs6r_-kVIAALh1p.jpg 1 https://pbs.twimg.com/media/CqWcgcqWcAI43jm.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/817777588030476288/pu/img/KbuLpE4krHF4VdPf.jpg 1 https://pbs.twimg.com/media/CqqaPjqWIAAOyNL.jpg 1 https://pbs.twimg.com/media/CV0oaHFW4AA9Coi.jpg 1 https://pbs.twimg.com/media/CZ724fDUYAAytS-.jpg 1 https://pbs.twimg.com/media/CUwLtPeU8AAfAb2.jpg 1 https://pbs.twimg.com/media/ClujESVXEAA4uH8.jpg 1 https://pbs.twimg.com/media/CUbrDWOWcAEyMdM.jpg 1 https://pbs.twimg.com/media/Cg2bKLAWwAA0WEm.jpg 1 https://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg 1 https://pbs.twimg.com/media/ChdyJvdWwAA5HGd.jpg 1 https://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg 1 https://pbs.twimg.com/media/CVKEfMKWoAAR-Ud.jpg 1 https://pbs.twimg.com/media/CZ2nn7BUsAI2Pj3.jpg 1 https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg 1 https://pbs.twimg.com/media/Ca5JMvMUsAAGMll.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/693108992730632192/pu/img/ncJQQZf3eroMSF12.jpg 1 https://pbs.twimg.com/media/CU7seitWwAArlVy.jpg 1 https://pbs.twimg.com/media/CurLmoqXgAEPoJ-.jpg 1 https://pbs.twimg.com/media/ChlCQg-VIAQ_8g4.jpg 1 https://pbs.twimg.com/media/CkylrVWWsAAiXJE.jpg 1 https://pbs.twimg.com/media/CZMJYCRVAAE35Wk.jpg 1 https://pbs.twimg.com/media/Ciqq-VFUUAANlWm.jpg 1 https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg 1 https://pbs.twimg.com/media/CmufLLsXYAAsU0r.jpg 1 https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg 1 https://pbs.twimg.com/media/CX6_y6OU0AAl3v2.jpg 1 https://pbs.twimg.com/media/CZNK7NpWwAEAqUh.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/758467147756691456/pu/img/YTNzjRFDSPNXukmM.jpg 1 https://pbs.twimg.com/media/CVBrhXoWIAAox_C.jpg 1 https://pbs.twimg.com/media/CsRY1jAWYAUOx55.jpg 1 https://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg 1 https://pbs.twimg.com/media/CXgHoLnWAAA8i52.jpg 1 https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg 1 https://pbs.twimg.com/media/CVHOgDvU4AAfrXD.jpg 1 https://pbs.twimg.com/media/CcmDUjFW8AAqAjc.jpg 1 https://pbs.twimg.com/media/CVadWcCXIAAL4Sh.jpg 1 https://pbs.twimg.com/media/CWhzTbzWUAAEAUN.jpg 1 https://pbs.twimg.com/media/Cb3wWWbWEAAy06k.jpg 1 https://pbs.twimg.com/media/C04taUjWIAA6Mo4.jpg 1 https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg 1 https://pbs.twimg.com/media/CcwgjmuXIAEQoSd.jpg 1 https://pbs.twimg.com/media/ChJO9YaWYAEL0zC.jpg 1 https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/755955658164465664/pu/img/YcjfthN7C3z61GUj.jpg 1 https://pbs.twimg.com/media/CZqKDZTVIAEvtbc.jpg 1 https://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/698341973569245184/pu/img/Sj3A2vSfbKWSv61T.jpg 1 https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg 1 https://pbs.twimg.com/media/CZlTVL4WkAEpVR5.jpg 1 https://pbs.twimg.com/media/Cb78-nOWIAENNRc.jpg 1 https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg 1 https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg 1 https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg 1 https://pbs.twimg.com/media/Cqa1ofnXEAAG0yn.jpg 1 https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg 1 https://pbs.twimg.com/media/Cl_80k5WkAEbo9m.jpg 1 https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg 1 https://pbs.twimg.com/media/CVtvf6bWwAAd1rT.jpg 1 https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg 1 https://pbs.twimg.com/media/CUTpj-GWcAATc6A.jpg 1 https://pbs.twimg.com/media/CUswUBRUAAAahAo.jpg 1 https://pbs.twimg.com/media/CqJ95SRWgAATPK_.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/744234667679821824/pu/img/1GaWmtJtdqzZV7jy.jpg 1 https://pbs.twimg.com/media/CYF3TSlWMAAaoG5.jpg 1 https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg 1 https://pbs.twimg.com/media/CYPjvFqW8AAgiP2.jpg 1 https://pbs.twimg.com/media/CWZbBlAUsAAjRg5.jpg 1 https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg 1 https://pbs.twimg.com/media/CVl8_EPWoAAcuSC.jpg 1 https://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg 1 https://pbs.twimg.com/media/C0jcmOKVQAAd0VR.jpg 1 https://pbs.twimg.com/media/Csqqoo5WEAAMTVW.jpg 1 https://pbs.twimg.com/media/CcKC-5LW4AAK-nb.jpg 1 https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg 1 https://pbs.twimg.com/media/CVaQ0M4UsAAki3t.jpg 1 https://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg 1 https://pbs.twimg.com/media/CmPkGhFXEAABO1n.jpg 1 https://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg 1 https://pbs.twimg.com/media/CX7br3HWsAAQ9L1.jpg 1 https://pbs.twimg.com/media/Czu9RiwVEAA_Okk.jpg 1 https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg 1 https://pbs.twimg.com/media/CUnrN7vUcAAfGvN.jpg 1 https://pbs.twimg.com/media/CWKSIfUUYAAiOBO.jpg 1 https://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg 1 https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg 1 https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg 1 https://pbs.twimg.com/media/CXCh0QZW8AALdXm.jpg 1 https://pbs.twimg.com/media/CWt3G6EVEAIGEPr.jpg 1 https://pbs.twimg.com/media/Cf9tuHUWsAAHSrV.jpg 1 https://pbs.twimg.com/media/CW9UQ7oWkAAErmU.jpg 1 https://pbs.twimg.com/media/CzMTcZoXUAEKqEt.jpg 1 https://pbs.twimg.com/media/CryhFC0XEAA9wp_.jpg 1 https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg 1 https://pbs.twimg.com/media/CWD_jQMWEAAdYwH.jpg 1 https://pbs.twimg.com/media/Cskh9nRWYAAUxBP.jpg 1 https://pbs.twimg.com/media/CxL3IWeVEAAAIE2.jpg 1 https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg 1 https://pbs.twimg.com/media/CVzMPh1UsAELQ_p.jpg 1 https://pbs.twimg.com/media/CpG_CrlWYAYyuP3.jpg 1 https://pbs.twimg.com/media/CYfS75fWAAAllde.jpg 1 https://pbs.twimg.com/media/CVBdFahXAAAIe5Y.jpg 1 https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg 1 https://pbs.twimg.com/media/Cp87Y0jXYAQyjuV.jpg 1 https://pbs.twimg.com/media/CWhd_7WWsAAaqWG.jpg 1 https://pbs.twimg.com/media/Ct9u3ljW8AEnVIm.jpg 1 https://pbs.twimg.com/media/C0s-XtzWgAAp1W-.jpg 1 https://pbs.twimg.com/media/CWciPonWEAUOqLD.jpg 1 https://pbs.twimg.com/media/Cbixs3vUUAAqHHN.jpg 1 https://pbs.twimg.com/media/CV0l10AU8AAfg-a.jpg 1 https://pbs.twimg.com/media/CVBILUgVAAA1ZUr.jpg 1 https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg 1 https://pbs.twimg.com/media/C2vLrpvWIAA3LM3.jpg 1 https://pbs.twimg.com/media/CWcrAVQWEAA6QMp.jpg 1 https://pbs.twimg.com/media/CXhVKtvW8AAyiyK.jpg 1 https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg 1 https://pbs.twimg.com/media/CU83IZ8W4AEIh4y.jpg 1 https://pbs.twimg.com/media/CcFRCfRW4AA5a72.jpg 1 https://pbs.twimg.com/media/CU8Z-OxXAAA-sd2.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/830956118893543424/pu/img/t2G0raF7pDPRMAH5.jpg 1 https://pbs.twimg.com/media/CoeWSJcUIAAv3Bq.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/755110610942169088/pu/img/3-INz45pSRMkzOEF.jpg 1 https://pbs.twimg.com/media/CmS-QkQWAAAkUa-.jpg 1 https://pbs.twimg.com/media/CYpsFmIWAAAYh9C.jpg 1 https://pbs.twimg.com/media/CaJRMPQWIAA1zL9.jpg 1 https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg 1 https://pbs.twimg.com/media/Cme7pg2XEAATMnP.jpg 1 https://pbs.twimg.com/media/CVhBLohWEAAXtYl.jpg 1 https://pbs.twimg.com/media/Cqoq5PGWAAA-U8T.jpg 1 https://pbs.twimg.com/media/CgiFjIpWgAA4wVp.jpg 1 https://pbs.twimg.com/media/CZiO7mWUEAAa4zo.jpg 1 https://pbs.twimg.com/media/CbJRrigW0AIcJ2N.jpg 1 https://pbs.twimg.com/media/Cy3IvdZXgAUoEaj.jpg 1 https://pbs.twimg.com/media/CWJmzNsWUAE706Z.jpg 1 https://pbs.twimg.com/media/CdPJUWIWIAAIchl.jpg 1 https://pbs.twimg.com/media/CVt49k_WsAAtNYC.jpg 1 https://pbs.twimg.com/media/CVQnPMrVAAAzShR.jpg 1 https://pbs.twimg.com/media/CfTLUYWXEAEkyES.jpg 1 https://pbs.twimg.com/media/CwHIg61WIAApnEV.jpg 1 https://pbs.twimg.com/media/CYN_-6iW8AQhPu2.jpg 1 https://pbs.twimg.com/media/CfFNk7cWAAA-hND.jpg 1 https://pbs.twimg.com/media/CVlkid8WoAAqDlB.jpg 1 https://pbs.twimg.com/media/CdjaSFCWAAAJZh3.jpg 1 https://pbs.twimg.com/media/CXfQG_fW8AAjVhV.jpg 1 https://pbs.twimg.com/media/C2AzHjQWQAApuhf.jpg 1 https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg 1 https://pbs.twimg.com/media/CZDRTAPUoAEaqxF.jpg 1 https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/729838572744912896/pu/img/RIl-XYmRxW-YLFSV.jpg 1 https://pbs.twimg.com/media/Cl-yykwWkAAqUCE.jpg 1 https://pbs.twimg.com/media/CVHdK-7WwAAsuyc.jpg 1 https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg 1 https://pbs.twimg.com/media/CU8ZDu9WwAADg3N.jpg 1 https://pbs.twimg.com/media/CYaI5aaW8AE8Uyk.jpg 1 https://pbs.twimg.com/media/CbXN7aPWIAE0Xt1.jpg 1 https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg 1 https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg 1 https://pbs.twimg.com/media/CcMRSwUW8AAxxNC.jpg 1 https://pbs.twimg.com/media/CbmOY41UAAQylmA.jpg 1 https://pbs.twimg.com/media/CagJtjYW8AADoHu.jpg 1 https://pbs.twimg.com/media/CcrEFQdUcAA7CJf.jpg 1 https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg 1 https://pbs.twimg.com/media/CbTj--1XEAIZjc_.jpg 1 https://pbs.twimg.com/media/CUSGbXeVAAAgztZ.jpg 1 https://pbs.twimg.com/media/C3rN-lcWEAA9CmR.jpg 1 https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg 1 https://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg 1 https://pbs.twimg.com/media/CWE85snWIAEG5ES.jpg 1 https://pbs.twimg.com/media/CXrmMSpUwAAdeRj.jpg 1 https://pbs.twimg.com/media/CU35E7VWEAAKYBy.jpg 1 https://pbs.twimg.com/media/CWEWClfW4AAnqhG.jpg 1 https://pbs.twimg.com/media/CVb1mRiWcAADBsE.jpg 1 https://pbs.twimg.com/media/CZRBZ9mWkAAWblt.jpg 1 https://pbs.twimg.com/media/CV58a4nXAAApywo.jpg 1 https://pbs.twimg.com/media/CZTLeBuWIAAFkeR.jpg 1 https://pbs.twimg.com/media/Cyh5mQTW8AQpB6K.jpg 1 https://pbs.twimg.com/media/CV4_8FgXAAQOj4S.jpg 1 https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg 1 https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg 1 https://pbs.twimg.com/media/CXV1Ot_W8AEpkQO.jpg 1 https://pbs.twimg.com/media/CVwCdCFW4AUHY4D.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/795464066940764160/pu/img/jPkMMQXdydb7CqFX.jpg 1 https://pbs.twimg.com/media/CcgF5ovW8AACrEU.jpg 1 https://pbs.twimg.com/media/CVZjOktVAAAtigw.jpg 1 https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg 1 https://pbs.twimg.com/media/CgGCvxAUkAAx55r.jpg 1 https://pbs.twimg.com/media/CiDap8fWEAAC4iW.jpg 1 https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg 1 https://pbs.twimg.com/media/Crc9DEoWEAE7RLH.jpg 1 https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg 1 https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg 1 https://pbs.twimg.com/media/CcRO8FmW4AAzazk.jpg 1 https://pbs.twimg.com/media/ClbBg4WWEAMjwJu.jpg 1 https://pbs.twimg.com/media/CZX8nyeVAAEstKM.jpg 1 https://pbs.twimg.com/media/CucnLmeWAAALOSC.jpg 1 https://pbs.twimg.com/media/Cr2_6R8WAAAUMtc.jpg 1 https://pbs.twimg.com/media/CW4b-GUWYAAa8QO.jpg 1 https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg 1 https://pbs.twimg.com/media/CVBzbWsWsAEyNMA.jpg 1 https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg 1 https://pbs.twimg.com/media/CUTDtyGXIAARxus.jpg 1 https://pbs.twimg.com/media/CkZImGVUoAAwv0b.jpg 1 https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg 1 https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg 1 https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg 1 https://pbs.twimg.com/media/CbR-9edXIAEHJKi.jpg 1 https://pbs.twimg.com/media/Caf1pQxWIAEme3q.jpg 1 https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg 1 https://pbs.twimg.com/media/CbiKe7-W0AIVNNr.jpg 1 https://pbs.twimg.com/media/CYDmK7ZVAAI_ylL.jpg 1 https://pbs.twimg.com/media/CmKpVtlWAAEnyHm.jpg 1 https://pbs.twimg.com/media/CoP7c4bWcAAr55g.jpg 1 https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg 1 https://pbs.twimg.com/media/CZ8HIsGWIAA9eXX.jpg 1 https://pbs.twimg.com/media/CUdvambWoAA007z.jpg 1 https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg 1 https://pbs.twimg.com/media/CqGf3xaXYAEh3ak.jpg 1 https://pbs.twimg.com/media/CVGbPgrWIAAQ1fB.jpg 1 https://pbs.twimg.com/media/CyNPmJgXcAECPuB.jpg 1 https://pbs.twimg.com/media/Cj5-aUQUgAAb43p.jpg 1 https://pbs.twimg.com/media/CxbX_n2WIAAHaLS.jpg 1 https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg 1 https://pbs.twimg.com/media/CbnpI_1XIAAiRAz.jpg 1 https://pbs.twimg.com/media/CwG6zDfWcAA8jBD.jpg 1 https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg 1 https://pbs.twimg.com/media/CaLBJmOWYAQt44t.jpg 1 https://pbs.twimg.com/media/CXrawAhWkAAWSxC.jpg 1 https://pbs.twimg.com/media/CjO7OfeWgAAUQy-.jpg 1 https://pbs.twimg.com/media/CyYub2kWEAEYdaq.jpg 1 https://pbs.twimg.com/media/Ci8UxxcW0AYgHDh.jpg 1 https://pbs.twimg.com/media/CeHckpuW4AAF7rT.jpg 1 https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg 1 https://pbs.twimg.com/media/CY42CFWW8AACOwt.jpg 1 https://pbs.twimg.com/media/Cj9VEs_XAAAlTai.jpg 1 https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg 1 https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg 1 https://pbs.twimg.com/media/CYnS9VWW8AAeR8m.jpg 1 https://pbs.twimg.com/media/C4lst0bXAAE6MP8.jpg 1 https://pbs.twimg.com/media/CwHWOZ7W8AAHv8S.jpg 1 https://pbs.twimg.com/media/C4AqLSgVYAEg8nt.jpg 1 https://pbs.twimg.com/media/CWomSU_XIAAUYiK.jpg 1 https://pbs.twimg.com/media/CnsIT0WWcAAul8V.jpg 1 https://pbs.twimg.com/media/Cj51Oj3VAAEVe4O.jpg 1 https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg 1 https://pbs.twimg.com/media/CUG0bC0U8AAw2su.jpg 1 https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg 1 https://pbs.twimg.com/media/CoZl9fXWgAMox0n.jpg 1 https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 https://pbs.twimg.com/media/Cn-4m2CXYAErPGe.jpg 1 https://pbs.twimg.com/media/Cbi9dI_UYAAgkyC.jpg 1 https://pbs.twimg.com/media/CU4AwqQWUAAEgE2.jpg 1 https://pbs.twimg.com/media/CZLKJpDWQAA-5u4.jpg 1 https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg 1 https://pbs.twimg.com/media/Cc1RNHLW4AACG6H.jpg 1 https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg 1 https://pbs.twimg.com/media/CVbjRSIWsAElw2s.jpg 1 https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg 1 https://pbs.twimg.com/media/CUd_wYRWUAAZsKr.jpg 1 https://pbs.twimg.com/media/Ce1oLNqWAAE34w7.jpg 1 https://pbs.twimg.com/media/CbdpBmLUYAY9SgQ.jpg 1 https://pbs.twimg.com/media/CY4ciRFUMAAovos.jpg 1 https://pbs.twimg.com/media/CUZE4IWW4AAZmDf.jpg 1 https://pbs.twimg.com/media/Cx4h7zHUsAAqaJd.jpg 1 https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/889278779352338437/pu/img/VlbFB3v8H8VwzVNY.jpg 1 https://pbs.twimg.com/media/CkoeKTPWYAAcWmo.jpg 1 https://pbs.twimg.com/media/CZxc3G7WEAAM4Mv.jpg 1 https://pbs.twimg.com/media/CoY324eWYAEiDOG.jpg 1 https://pbs.twimg.com/media/CsWfKadWEAAtmlS.jpg 1 https://pbs.twimg.com/media/CYsTg1XUsAEPjxE.jpg 1 https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg 1 https://pbs.twimg.com/media/CVlqi_AXIAASlcD.jpg 1 https://pbs.twimg.com/media/C4E99ygWcAAQpPs.jpg 1 https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg 1 https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg 1 https://pbs.twimg.com/media/CVBokRSWsAADuXx.jpg 1 https://pbs.twimg.com/media/CU7nSZEW4AA6r5u.jpg 1 https://pbs.twimg.com/media/CV9etctWUAAl5Hp.jpg 1 https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg 1 https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg 1 https://pbs.twimg.com/media/CX7EkuHWkAESLZk.jpg 1 https://pbs.twimg.com/media/Cc4NCQiXEAEx2eJ.jpg 1 https://pbs.twimg.com/media/Cswbc2yWcAAVsCJ.jpg 1 https://pbs.twimg.com/media/CpDNQGkWEAENiYZ.jpg 1 https://pbs.twimg.com/media/CUEUva1WsAA2jPb.jpg 1 https://pbs.twimg.com/media/Cl6aOBhWEAALuti.jpg 1 https://pbs.twimg.com/media/CkR0jrhWYAALL5N.jpg 1 https://pbs.twimg.com/media/CbSqE0rVIAEOPE4.jpg 1 https://pbs.twimg.com/media/CWZgPPUWUAAUOvu.jpg 1 https://pbs.twimg.com/media/CbJLG0HWwAAV-ug.jpg 1 https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg 1 https://pbs.twimg.com/media/CZBeMMVUwAEdVqI.jpg 1 https://pbs.twimg.com/media/C1sKo_QUkAALtkw.jpg 1 https://pbs.twimg.com/media/CX66EiJWkAAVjA-.jpg 1 https://pbs.twimg.com/media/CisqdVcXEAE3iW7.jpg 1 https://pbs.twimg.com/media/CgsA5eFWgAAu0qn.jpg 1 https://pbs.twimg.com/media/CdecUSzUIAAHCvg.jpg 1 https://pbs.twimg.com/media/CvASw6dWcAQmo3X.jpg 1 https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg 1 https://pbs.twimg.com/media/CWcybBmWcAAigAQ.jpg 1 https://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg 1 https://pbs.twimg.com/media/Ce14cOvWwAAcFJH.jpg 1 https://pbs.twimg.com/media/CV9nd30XAAAEba5.jpg 1 https://pbs.twimg.com/media/CmEGMSvUYAAl3ZM.jpg 1 https://pbs.twimg.com/media/Cof-SuqVYAAs4kZ.jpg 1 https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg 1 https://pbs.twimg.com/media/CWXaQMBWcAAATDi.jpg 1 https://pbs.twimg.com/media/CxvNfrhWQAA2hKM.jpg 1 https://pbs.twimg.com/media/CWUCGMtWEAAjXnS.jpg 1 https://pbs.twimg.com/media/CVuopr8WwAExw_T.jpg 1 https://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg 1 https://pbs.twimg.com/media/CdEbt0NXIAQH3Aa.jpg 1 https://pbs.twimg.com/media/Cq6B8V6XYAA1T1R.jpg 1 https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg 1 https://pbs.twimg.com/media/CdDkEkHWwAAAeUJ.jpg 1 https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg 1 https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg 1 https://pbs.twimg.com/media/CZ2-SRiWcAIjuM5.jpg 1 https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg 1 https://pbs.twimg.com/media/CaVRP4GWwAERC0v.jpg 1 https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg 1 https://pbs.twimg.com/media/CU8z65IUEAQBc4q.jpg 1 https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg 1 https://pbs.twimg.com/media/CV1ffl3XAAAiFyr.jpg 1 https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg 1 https://pbs.twimg.com/media/CbYd3C9WEAErJ4Z.jpg 1 https://pbs.twimg.com/media/CfKYfeBXIAAopp2.jpg 1 https://pbs.twimg.com/media/Cm9q2d3XEAAqO2m.jpg 1 https://pbs.twimg.com/media/CVo-JuMWwAAet6F.jpg 1 https://pbs.twimg.com/media/CrjC0JAWAAAjz6n.jpg 1 https://pbs.twimg.com/media/Czhf4XtVQAAIqpd.jpg 1 https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg 1 https://pbs.twimg.com/media/Cl0iFdeXEAQtPyT.jpg 1 https://pbs.twimg.com/media/CU6xVkbWsAAeHeU.jpg 1 https://pbs.twimg.com/media/CoOGZjiWAAEMKGx.jpg 1 https://pbs.twimg.com/media/CXHrcFYWcAEE5_L.jpg 1 https://pbs.twimg.com/media/CjzC2oGWYAAyIfG.jpg 1 https://pbs.twimg.com/media/C0iKPZIXUAAbDYV.jpg 1 https://pbs.twimg.com/media/CUS9PlUWwAANeAD.jpg 1 https://pbs.twimg.com/media/CYuVi9pWwAAbOGC.jpg 1 https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg 1 https://pbs.twimg.com/media/CYP62A6WkAAOnL4.jpg 1 https://pbs.twimg.com/media/CYeWlh0WAAADhsj.jpg 1 https://pbs.twimg.com/media/CinrX2EWkAABDYt.jpg 1 https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg 1 https://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg 1 https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/688211379870806016/pu/img/OI0VTwPYnsScQg8R.jpg 1 https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg 1 https://pbs.twimg.com/media/CmPp5pOXgAAD_SG.jpg 1 https://pbs.twimg.com/media/Coit84_VYAEMtLi.jpg 1 https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg 1 https://pbs.twimg.com/media/CpsyNtXWgAAqvs3.jpg 1 https://pbs.twimg.com/media/CV6gaUUWEAAnETq.jpg 1 https://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg 1 https://pbs.twimg.com/media/CqFouXOXYAAYpzG.jpg 1 https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg 1 https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg 1 https://pbs.twimg.com/media/CYTUhn7WkAEXocW.jpg 1 https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg 1 https://pbs.twimg.com/media/CvEAqQoWgAADj5K.jpg 1 https://pbs.twimg.com/media/CVvueeeWwAUcQLR.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/743509040018268160/pu/img/Ol2OgO5f8ciUp80r.jpg 1 https://pbs.twimg.com/media/CWzDWOkXAAAP0k7.jpg 1 https://pbs.twimg.com/media/CdDTJLMW4AEST--.jpg 1 https://pbs.twimg.com/media/Cp1R0ZTWcAAaPO4.jpg 1 https://pbs.twimg.com/media/CVeBQwiUsAAqhLw.jpg 1 https://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg 1 https://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg 1 https://pbs.twimg.com/media/CtzgXgeXYAA1Gxw.jpg 1 https://pbs.twimg.com/media/CiD3AfkXEAA3S_r.jpg 1 https://pbs.twimg.com/media/CjWMezdW0AErwU3.jpg 1 https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg 1 https://pbs.twimg.com/media/CcovaMUXIAApFDl.jpg 1 https://pbs.twimg.com/media/CZNzV6cW0AAsX7p.jpg 1 https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg 1 https://pbs.twimg.com/media/CW9K9VeVAAE0j-x.jpg 1 https://pbs.twimg.com/media/CU8tOJZWUAAlNoF.jpg 1 https://pbs.twimg.com/media/CWerGmOXAAAm6NY.jpg 1 https://pbs.twimg.com/media/Ca0zxGjW8AEfyYl.jpg 1 https://pbs.twimg.com/media/CXW4wGHWsAE_eBD.jpg 1 https://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg 1 https://pbs.twimg.com/media/CdeUKpcWoAAJAWJ.jpg 1 https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg 1 https://pbs.twimg.com/media/CWPHMqKVAAAE78E.jpg 1 https://pbs.twimg.com/media/Cco8OmOXIAE0aCu.jpg 1 https://pbs.twimg.com/media/CU9N6upXAAAbtQe.jpg 1 https://pbs.twimg.com/media/CmsXg9AWgAAs6Ui.jpg 1 https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg 1 https://pbs.twimg.com/media/CUxzQ-nWIAAgJUm.jpg 1 https://pbs.twimg.com/media/CX0kVRxWYAAWWZi.jpg 1 https://pbs.twimg.com/media/CvAr88kW8AEKNAO.jpg 1 https://pbs.twimg.com/media/CkMuP7SWkAAD-2R.jpg 1 https://pbs.twimg.com/media/CVGjflNWoAEwgrQ.jpg 1 https://pbs.twimg.com/media/C0Z2T_GWgAAxbL9.jpg 1 https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg 1 https://pbs.twimg.com/media/CgC1WqMW4AI1_N0.jpg 1 https://pbs.twimg.com/media/CxzXOyBW8AEu_Oi.jpg 1 https://pbs.twimg.com/media/CYpoAZTWEAA6vDs.jpg 1 https://pbs.twimg.com/media/Cq_Vy9KWcAIUIuv.jpg 1 https://pbs.twimg.com/media/CfU0t75W4AAUo9V.jpg 1 https://pbs.twimg.com/media/CWUZpydWcAAeipD.jpg 1 https://pbs.twimg.com/media/CVgxQc5XIAAYL0W.jpg 1 https://pbs.twimg.com/media/CUQ7tv3W4AA3KlI.jpg 1 https://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg 1 https://pbs.twimg.com/media/CmzRRY1WcAEoxwY.jpg 1 https://pbs.twimg.com/media/CubGchjXEAA6gpw.jpg 1 https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg 1 https://pbs.twimg.com/media/CWnznDTU4AAa-6P.jpg 1 https://pbs.twimg.com/media/CU8iYi2WsAEaqQ0.jpg 1 https://pbs.twimg.com/media/CY9xf1dUAAE4XLc.jpg 1 https://pbs.twimg.com/media/CpTRc4DUEAAYTq6.jpg 1 https://pbs.twimg.com/media/CVJ79MzW4AEpTom.jpg 1 https://pbs.twimg.com/media/CmnluwbXEAAqnkw.jpg 1 https://pbs.twimg.com/media/CtS_p9kXEAE2nh8.jpg 1 https://pbs.twimg.com/media/CkXEu2OUoAAs8yU.jpg 1 https://pbs.twimg.com/media/Cum5LlfWAAAyPcS.jpg 1 https://pbs.twimg.com/media/CnNKCKKWEAASCMI.jpg 1 https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg 1 https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg 1 https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg 1 https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg 1 https://pbs.twimg.com/media/CVwHgblWcAACWOD.jpg 1 https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/677644010865999872/pu/img/zVHEMYnJKzq1SauT.jpg 1 https://pbs.twimg.com/media/CuCxIzyWEAQTnQA.jpg 1 https://pbs.twimg.com/media/C0kTjqIXgAAqpRi.jpg 1 https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg 1 https://pbs.twimg.com/media/CjLuzPvUoAAbU5k.jpg 1 https://pbs.twimg.com/media/CVbZsouWUAIsxMc.jpg 1 https://pbs.twimg.com/media/CwxfrguUUAA1cbl.jpg 1 https://pbs.twimg.com/media/CVL6op1WEAAUFE7.jpg 1 https://pbs.twimg.com/media/Cgc9AjMVIAERdUA.jpg 1 https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg 1 https://pbs.twimg.com/media/CWTSt0UW4AALMNB.jpg 1 https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg 1 https://pbs.twimg.com/media/CWMyl9EWUAAnZJ0.jpg 1 https://pbs.twimg.com/media/Cvi2FiKWgAAif1u.jpg 1 https://pbs.twimg.com/media/CtkFS72WcAAiUrs.jpg 1 https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg 1 https://pbs.twimg.com/media/Cofmom_VUAA4dRO.jpg 1 https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg 1 https://pbs.twimg.com/media/Cew5kyOWsAA8Y_o.jpg 1 https://pbs.twimg.com/media/CWZdaGxXAAAjGjb.jpg 1 https://pbs.twimg.com/media/CwMU34YWIAAz1nU.jpg 1 https://pbs.twimg.com/media/CdXY-GHWoAALing.jpg 1 https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg 1 https://pbs.twimg.com/media/CVL-goTWoAEUfhy.jpg 1 https://pbs.twimg.com/media/CUXDGR2WcAAUQKz.jpg 1 https://pbs.twimg.com/media/CVfwXuWWIAAqnoi.jpg 1 https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg 1 https://pbs.twimg.com/media/C0szZh_XUAAm9je.jpg 1 https://pbs.twimg.com/media/CV_wCh8W4AEWWZ9.jpg 1 https://pbs.twimg.com/media/CW4tL1vWcAIw1dw.jpg 1 https://pbs.twimg.com/media/CY816snW8AYltrQ.jpg 1 https://pbs.twimg.com/media/CZNj8N-WQAMXASZ.jpg 1 https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg 1 https://pbs.twimg.com/media/CVRkLuJWUAAhhYp.jpg 1 https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg 1 https://pbs.twimg.com/media/CkEKe3QWYAAwoDy.jpg 1 https://pbs.twimg.com/media/CkEMBz9WYAAGLaa.jpg 1 https://pbs.twimg.com/media/CjWANBlVAAAaN-a.jpg 1 https://pbs.twimg.com/media/CVz7FxXWUAAlTRP.jpg 1 https://pbs.twimg.com/media/CUrLsI-UsAALfUL.jpg 1 https://pbs.twimg.com/media/CcLS6QKUcAAUuPa.jpg 1 https://pbs.twimg.com/media/Cv8moW9W8AIHOxR.jpg 1 https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg 1 https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg 1 https://pbs.twimg.com/media/C1h4_MEXUAARxQF.jpg 1 https://pbs.twimg.com/media/ChqK2cVWMAAE5Zj.jpg 1 https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg 1 https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg 1 https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg 1 https://pbs.twimg.com/media/CVEbFDRWsAAkN_7.jpg 1 https://pbs.twimg.com/media/CXcQfUNUQAEwFoQ.jpg 1 https://pbs.twimg.com/media/CU37pEoWUAAitje.jpg 1 https://pbs.twimg.com/media/CVROAIfWsAECA5t.jpg 1 https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg 1 https://pbs.twimg.com/media/CZIJD2SWIAMJgNI.jpg 1 https://pbs.twimg.com/media/CY2iwGNWUAI5zWi.jpg 1 https://pbs.twimg.com/media/CkZVdJ6WYAAXZ5A.jpg 1 https://pbs.twimg.com/media/CXBq6RPWkAAaNuU.jpg 1 https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg 1 https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg 1 https://pbs.twimg.com/media/CmZ3YH9WEAAowi3.jpg 1 https://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg 1 https://pbs.twimg.com/media/CfjE5FRXEAErFWR.jpg 1 https://pbs.twimg.com/media/CVMJ9guXAAAhAiK.jpg 1 https://pbs.twimg.com/media/Ce6qZC2WAAAcSoI.jpg 1 https://pbs.twimg.com/media/CYEvSaRWwAAukZ_.jpg 1 https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg 1 https://pbs.twimg.com/media/CZNtgWhWkAAbq3W.jpg 1 https://pbs.twimg.com/media/CVqwedgXIAEAT6A.jpg 1 https://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg 1 https://pbs.twimg.com/media/CYKQS0xUQAEOptC.jpg 1 https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg 1 https://pbs.twimg.com/media/CXw2jSpWMAAad6V.jpg 1 https://pbs.twimg.com/media/CdNOb17WwAA5z4A.jpg 1 https://pbs.twimg.com/media/CmDgPTsWEAIi2T1.jpg 1 https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg 1 https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg 1 https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg 1 https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg 1 https://pbs.twimg.com/media/CiOEnI6WgAAmq4E.jpg 1 https://pbs.twimg.com/media/CyXPzXRWgAAvd1j.jpg 1 https://pbs.twimg.com/media/C5EdT4jWEAARv2C.jpg 1 https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg 1 https://pbs.twimg.com/media/CyI3zXgWEAACQfB.jpg 1 https://pbs.twimg.com/media/Cmjzc-oWEAESFCm.jpg 1 https://pbs.twimg.com/media/Cl6odlVWQAIy5uk.jpg 1 https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg 1 https://pbs.twimg.com/media/CnlmeL3WgAA4c84.jpg 1 https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg 1 https://pbs.twimg.com/media/CcvbGj5W8AARjB6.jpg 1 https://pbs.twimg.com/media/C0TAnZIUAAAADKs.jpg 1 https://pbs.twimg.com/media/CxPPnCYWIAAo_ao.jpg 1 https://pbs.twimg.com/media/CncseIzWgAA4ghH.jpg 1 https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg 1 https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg 1 https://pbs.twimg.com/media/CVahaz9XAAA8uTy.jpg 1 https://pbs.twimg.com/media/CWoyfMiWUAAmGdd.jpg 1 https://pbs.twimg.com/media/CgwuWCeW4AAsgbD.jpg 1 https://pbs.twimg.com/ext_tw_video_thumb/879415784908390401/pu/img/cX7XI1TnUsseGET5.jpg 1 https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg 1 https://pbs.twimg.com/media/CdcGBB3WwAAGBuU.jpg 1 Name: jpg_url, dtype: int64
image_prediction.p1.value_counts()
golden_retriever 150 Labrador_retriever 100 Pembroke 89 Chihuahua 83 pug 57 chow 44 Samoyed 43 toy_poodle 39 Pomeranian 38 malamute 30 cocker_spaniel 30 French_bulldog 26 miniature_pinscher 23 Chesapeake_Bay_retriever 23 seat_belt 22 Staffordshire_bullterrier 20 German_shepherd 20 Siberian_husky 20 Cardigan 19 web_site 19 Shetland_sheepdog 18 beagle 18 Maltese_dog 18 teddy 18 Eskimo_dog 18 Rottweiler 17 Shih-Tzu 17 Lakeland_terrier 17 Italian_greyhound 16 kuvasz 16 West_Highland_white_terrier 14 Great_Pyrenees 14 basset 13 Pekinese 13 American_Staffordshire_terrier 13 dalmatian 13 vizsla 13 Old_English_sheepdog 12 Border_collie 12 Airedale 12 soft-coated_wheaten_terrier 11 Blenheim_spaniel 11 kelpie 11 collie 10 Bernese_mountain_dog 10 English_springer 10 schipperke 10 boxer 10 Boston_bull 9 Great_Dane 9 borzoi 9 tennis_ball 9 whippet 9 dingo 9 malinois 9 Yorkshire_terrier 8 standard_poodle 8 Doberman 8 flat-coated_retriever 8 papillon 8 doormat 8 miniature_poodle 8 English_setter 8 Norwegian_elkhound 8 bloodhound 7 Brittany_spaniel 7 tub 7 German_short-haired_pointer 7 swing 7 Siamese_cat 7 Norfolk_terrier 7 hamster 7 Saint_Bernard 7 basenji 7 Border_terrier 7 bath_towel 7 Dandie_Dinmont 6 llama 6 Irish_terrier 6 redbone 6 ice_bear 6 home_theater 6 car_mirror 6 Irish_setter 6 porcupine 5 Tibetan_mastiff 5 Bedlington_terrier 5 shopping_cart 5 minivan 5 bull_mastiff 5 Walker_hound 5 ox 5 hippopotamus 5 Newfoundland 5 Lhasa 5 jigsaw_puzzle 4 Weimaraner 4 bow_tie 4 Tibetan_terrier 4 brown_bear 4 wombat 4 Saluki 4 Gordon_setter 4 Mexican_hairless 4 goose 4 barrow 4 Arctic_fox 4 Norwich_terrier 4 bathtub 4 patio 4 Rhodesian_ridgeback 4 Afghan_hound 4 keeshond 4 guinea_pig 4 hog 4 miniature_schnauzer 4 bluetick 4 komondor 3 seashore 3 triceratops 3 dishwasher 3 Ibizan_hound 3 Arabian_camel 3 window_shade 3 Leonberg 3 cairn 3 cowboy_hat 3 Christmas_stocking 3 toilet_tissue 3 refrigerator 3 mousetrap 3 jack-o'-lantern 3 balloon 3 wood_rabbit 3 prison 3 ram 3 vacuum 3 stone_wall 3 comic_book 3 Greater_Swiss_Mountain_dog 3 muzzle 3 Scottish_deerhound 3 sea_lion 3 ski_mask 3 Irish_water_spaniel 3 Brabancon_griffon 3 briard 3 Welsh_springer_spaniel 3 curly-coated_retriever 3 motor_scooter 3 washbasin 3 white_wolf 3 giant_schnauzer 3 common_iguana 3 space_heater 3 wool 2 lakeside 2 birdhouse 2 geyser 2 frilled_lizard 2 tabby 2 tusker 2 bustard 2 hen 2 badger 2 snorkel 2 paddle 2 axolotl 2 gondola 2 feather_boa 2 hermit_crab 2 koala 2 black-and-tan_coonhound 2 wallaby 2 Sussex_spaniel 2 hyena 2 box_turtle 2 chimpanzee 2 snail 2 laptop 2 upright 2 toyshop 2 Australian_terrier 2 street_sign 2 jellyfish 2 cash_machine 2 ostrich 2 leatherback_turtle 2 gas_pump 2 dough 2 Angora 2 toy_terrier 2 weasel 2 meerkat 2 acorn_squash 2 sorrel 2 paper_towel 2 dogsled 2 shower_curtain 2 wire-haired_fox_terrier 2 Loafer 2 Appenzeller 2 bubble 2 beach_wagon 1 handkerchief 1 Madagascar_cat 1 padlock 1 restaurant 1 military_uniform 1 sundial 1 bearskin 1 timber_wolf 1 cuirass 1 ice_lolly 1 long-horned_beetle 1 groenendael 1 envelope 1 hammer 1 hand_blower 1 limousine 1 washer 1 grille 1 binoculars 1 trombone 1 orange 1 harp 1 bonnet 1 platypus 1 Egyptian_cat 1 zebra 1 pencil_box 1 maillot 1 tick 1 African_hunting_dog 1 cup 1 three-toed_sloth 1 terrapin 1 fire_engine 1 lacewing 1 tricycle 1 panpipe 1 book_jacket 1 African_grey 1 flamingo 1 fiddler_crab 1 cougar 1 convertible 1 hay 1 pot 1 lynx 1 bookcase 1 wild_boar 1 silky_terrier 1 pool_table 1 coho 1 dining_table 1 desktop_computer 1 sunglasses 1 rotisserie 1 bakery 1 remote_control 1 shopping_basket 1 cheetah 1 mud_turtle 1 killer_whale 1 peacock 1 carton 1 lawn_mower 1 hare 1 toilet_seat 1 damselfly 1 robin 1 microphone 1 traffic_light 1 park_bench 1 Scotch_terrier 1 giant_panda 1 grey_fox 1 bee_eater 1 water_bottle 1 picket_fence 1 water_buffalo 1 ibex 1 sliding_door 1 king_penguin 1 guenon 1 clog 1 leopard 1 mailbox 1 school_bus 1 starfish 1 wooden_spoon 1 otter 1 crash_helmet 1 pole 1 hummingbird 1 EntleBucher 1 rapeseed 1 snowmobile 1 pillow 1 Japanese_spaniel 1 stove 1 rain_barrel 1 quilt 1 piggy_bank 1 clumber 1 ocarina 1 standard_schnauzer 1 tiger_shark 1 bald_eagle 1 swab 1 African_crocodile 1 dhole 1 bookshop 1 earthstar 1 cliff 1 carousel 1 ping-pong_ball 1 syringe 1 mortarboard 1 lorikeet 1 electric_fan 1 bannister 1 marmot 1 slug 1 banana 1 suit 1 skunk 1 barbell 1 agama 1 hotdog 1 four-poster 1 jersey 1 loupe 1 sulphur-crested_cockatoo 1 leaf_beetle 1 cowboy_boot 1 maze 1 coil 1 shield 1 coffee_mug 1 black-footed_ferret 1 lion 1 soccer_ball 1 conch 1 bison 1 boathouse 1 prayer_rug 1 teapot 1 nail 1 tailed_frog 1 walking_stick 1 candle 1 china_cabinet 1 coral_reef 1 radio_telescope 1 pedestal 1 bighorn 1 fountain 1 basketball 1 scorpion 1 bib 1 beaver 1 bow 1 microwave 1 alp 1 crane 1 minibus 1 sea_urchin 1 studio_couch 1 polecat 1 cheeseburger 1 canoe 1 pitcher 1 sandbar 1 revolver 1 espresso 1 American_black_bear 1 Name: p1, dtype: int64
image_prediction.p1_conf.value_counts()
0.366248 2 0.713293 2 0.375098 2 0.636169 2 0.611525 2 0.420463 2 0.581403 2 0.403698 2 0.530104 2 0.254856 2 0.346545 2 0.721188 2 0.677408 2 0.907083 2 0.243529 2 0.505370 2 0.593858 2 0.372202 2 0.274637 2 0.600276 2 0.506312 2 0.615163 2 0.556595 2 0.995143 2 0.809197 2 0.964929 2 0.777468 2 0.336200 2 0.617389 2 0.786089 2 0.474292 2 0.806757 2 0.090341 2 0.316565 2 0.796313 2 0.676439 2 0.861651 2 0.585441 2 0.757547 2 0.500509 2 0.533180 2 0.945523 2 0.303415 2 0.978833 2 0.416769 2 0.740220 2 0.272205 2 0.586937 2 0.967397 2 0.153718 2 0.253442 2 0.240602 2 0.700466 2 0.363272 2 0.802333 2 0.997310 2 0.735163 2 0.993830 2 0.705092 2 0.574557 2 0.938048 2 0.427742 2 0.843799 2 0.479477 2 0.351308 2 0.873233 2 0.908703 2 0.383223 2 0.868671 2 0.192717 1 0.868658 1 0.633037 1 0.546933 1 0.927975 1 0.545286 1 0.611558 1 0.711235 1 0.692517 1 0.217821 1 0.996709 1 0.935307 1 0.957670 1 0.452577 1 0.748904 1 0.235373 1 0.272451 1 0.482498 1 0.706038 1 0.302685 1 0.208922 1 0.838012 1 0.413090 1 0.993718 1 0.413688 1 0.979053 1 0.275793 1 0.392535 1 0.874431 1 0.492709 1 0.681347 1 0.973841 1 0.553901 1 0.130432 1 0.364729 1 0.912804 1 0.305392 1 0.431080 1 0.435396 1 0.458855 1 0.174738 1 0.988412 1 0.174315 1 0.664181 1 0.838994 1 0.509879 1 0.511341 1 0.971358 1 0.776400 1 0.387728 1 0.999846 1 0.372988 1 0.879286 1 0.281463 1 0.563631 1 0.599587 1 0.949591 1 0.849029 1 0.435254 1 0.240591 1 0.583780 1 0.261112 1 0.096063 1 0.769159 1 0.112413 1 0.180079 1 0.591829 1 0.151113 1 0.890426 1 0.146440 1 0.253839 1 0.253089 1 0.672117 1 0.962572 1 0.285800 1 0.395101 1 0.995026 1 0.350993 1 0.245033 1 0.524454 1 0.172850 1 0.176495 1 0.917525 1 0.496348 1 0.836632 1 0.285555 1 0.892925 1 0.885301 1 0.383941 1 0.462408 1 0.948537 1 0.978277 1 0.953170 1 0.670068 1 0.168909 1 0.490068 1 0.346126 1 0.240427 1 0.222943 1 0.376541 1 0.669996 1 0.556373 1 0.185903 1 0.987997 1 0.787164 1 0.700182 1 0.897312 1 0.769999 1 0.969311 1 0.194211 1 0.990793 1 0.413824 1 0.457117 1 0.987407 1 0.847292 1 0.991454 1 0.866221 1 0.425176 1 0.948355 1 0.662908 1 0.354488 1 0.720219 1 0.273767 1 0.779356 1 0.088540 1 0.776346 1 0.255971 1 0.755945 1 0.831757 1 0.202335 1 0.985222 1 0.930705 1 0.296145 1 0.430583 1 0.876413 1 0.288447 1 0.533941 1 0.315163 1 0.447246 1 0.978007 1 0.145877 1 0.921968 1 0.876337 1 0.359860 1 0.127701 1 0.346695 1 0.715351 1 0.384559 1 0.610807 1 0.335269 1 0.248926 1 0.879012 1 0.878886 1 0.440781 1 0.619382 1 0.119188 1 0.500992 1 0.992339 1 0.700764 1 0.546856 1 0.270468 1 0.843359 1 0.642426 1 0.872064 1 0.406509 1 0.840871 1 0.397163 1 0.816044 1 0.944032 1 0.483972 1 0.984231 1 0.500373 1 0.749394 1 0.320126 1 0.964497 1 0.925505 1 0.796694 1 0.848514 1 0.432594 1 0.808737 1 0.327957 1 0.311861 1 0.614231 1 0.343063 1 0.883493 1 0.727039 1 0.439077 1 0.359586 1 0.544576 1 0.922876 1 0.200373 1 0.994090 1 0.189423 1 0.974936 1 0.548907 1 0.201058 1 0.827035 1 0.313464 1 0.547401 1 0.999715 1 0.848704 1 0.318851 1 0.846628 1 0.862964 1 0.186498 1 0.171486 1 0.868107 1 0.901392 1 0.503728 1 0.100896 1 0.188174 1 0.772894 1 0.979803 1 0.212957 1 0.746135 1 0.438087 1 0.352793 1 0.897841 1 0.587372 1 0.750256 1 0.998201 1 0.839129 1 0.681218 1 0.584397 1 0.368660 1 0.992619 1 0.779137 1 0.572349 1 0.969171 1 0.651137 1 0.981652 1 0.280222 1 0.952963 1 0.341663 1 0.954844 1 0.462556 1 0.202999 1 0.694541 1 0.999306 1 0.989316 1 0.640185 1 0.997860 1 0.614536 1 0.304902 1 0.456092 1 0.428756 1 0.515699 1 0.168020 1 0.330573 1 0.302648 1 0.419427 1 0.254642 1 0.132695 1 0.993333 1 0.393330 1 0.656463 1 0.302854 1 0.424168 1 0.514085 1 0.277257 1 0.622752 1 0.839390 1 0.768156 1 0.119693 1 0.682082 1 0.616457 1 0.383346 1 0.330741 1 0.224218 1 0.215438 1 0.369275 1 0.285508 1 0.581835 1 0.350629 1 0.377417 1 0.565981 1 0.732043 1 0.540201 1 0.354733 1 0.436377 1 0.238855 1 0.620768 1 0.523191 1 0.155279 1 0.752707 1 0.999924 1 0.442534 1 0.568809 1 0.903832 1 0.999916 1 0.767005 1 0.596455 1 0.976103 1 0.575637 1 0.714367 1 0.369661 1 0.974047 1 0.766327 1 0.362835 1 0.757756 1 0.569566 1 0.516106 1 0.599660 1 0.741860 1 0.236031 1 0.607401 1 0.586307 1 0.883086 1 0.825678 1 0.945629 1 0.336393 1 0.817066 1 0.369530 1 0.489845 1 0.406374 1 0.097232 1 0.913255 1 0.992758 1 0.790386 1 0.256505 1 0.337557 1 0.999044 1 0.139613 1 0.999091 1 0.625555 1 0.909951 1 0.488555 1 0.952613 1 0.107948 1 0.457164 1 0.449684 1 0.936183 1 0.709512 1 0.318524 1 0.194773 1 0.425595 1 0.610946 1 0.327887 1 0.991682 1 0.833952 1 0.363257 1 0.382234 1 0.295966 1 0.442612 1 0.175518 1 0.141432 1 0.273492 1 0.774792 1 0.773135 1 0.754799 1 0.107317 1 0.271683 1 0.120849 1 0.396495 1 0.599454 1 0.533699 1 0.605437 1 0.243904 1 0.610171 1 0.526488 1 0.916645 1 0.071124 1 0.382113 1 0.993651 1 0.961643 1 0.256110 1 0.148526 1 0.909106 1 0.829307 1 0.396984 1 0.408450 1 0.137871 1 0.493790 1 0.151876 1 0.825333 1 0.331179 1 0.413535 1 0.322818 1 0.113992 1 0.586414 1 0.761454 1 0.922540 1 0.999335 1 0.137832 1 0.263892 1 0.623685 1 0.691137 1 0.822936 1 0.907990 1 0.406047 1 0.454239 1 0.673664 1 0.997071 1 0.572422 1 0.336874 1 0.170921 1 0.982794 1 0.835102 1 0.819511 1 0.881538 1 0.407016 1 0.323581 1 0.918834 1 0.294457 1 0.255088 1 0.765979 1 0.132845 1 0.473303 1 0.808681 1 0.765277 1 0.329339 1 0.777124 1 0.420155 1 0.998886 1 0.850050 1 0.697480 1 0.369488 1 0.778113 1 0.956565 1 0.919255 1 0.967103 1 0.183283 1 0.868560 1 0.808276 1 0.747713 1 0.954089 1 0.307672 1 0.479896 1 0.802092 1 0.954517 1 0.424106 1 0.714319 1 0.431469 1 0.673691 1 0.700625 1 0.949562 1 0.660099 1 0.309706 1 0.579472 1 0.328161 1 0.979487 1 0.430544 1 0.059033 1 0.960513 1 0.952773 1 0.731564 1 0.737041 1 0.841084 1 0.740229 1 0.880014 1 0.660085 1 0.127178 1 0.951337 1 0.951963 1 0.445334 1 0.328792 1 0.604938 1 0.980071 1 0.156276 1 0.225221 1 0.203570 1 0.999984 1 0.201493 1 0.379055 1 0.973715 1 0.958452 1 0.993449 1 0.999828 1 0.289550 1 0.504690 1 0.944692 1 0.452517 1 0.678046 1 0.627593 1 0.813507 1 0.055379 1 0.508292 1 0.931963 1 0.081101 1 0.430135 1 0.426494 1 0.286558 1 0.173989 1 0.543706 1 0.359383 1 0.360465 1 0.186387 1 0.636845 1 0.481333 1 0.757942 1 0.877207 1 0.836421 1 0.044333 1 0.366875 1 0.967275 1 0.513191 1 0.399163 1 0.279604 1 0.871283 1 0.857240 1 0.787125 1 0.978108 1 0.969518 1 0.195835 1 0.427781 1 0.351957 1 0.367818 1 0.471493 1 0.309106 1 0.899086 1 0.998335 1 0.883991 1 0.516610 1 0.948323 1 0.503672 1 0.415495 1 0.530416 1 0.218303 1 0.999888 1 0.196015 1 0.698207 1 0.259115 1 0.566911 1 0.728153 1 0.524583 1 0.858494 1 0.140394 1 0.819106 1 0.145742 1 0.671853 1 0.529248 1 0.717776 1 0.628312 1 0.975401 1 0.718944 1 0.963176 1 0.980695 1 0.681495 1 0.625409 1 0.656616 1 0.362596 1 0.828904 1 0.459604 1 0.871342 1 0.807762 1 0.868367 1 0.291081 1 0.661953 1 0.868304 1 0.215161 1 0.999201 1 0.226716 1 0.945537 1 0.526536 1 0.302200 1 0.567475 1 0.533967 1 0.794272 1 0.699355 1 0.441427 1 0.690517 1 0.587101 1 0.071536 1 0.664834 1 0.578120 1 0.888181 1 0.959514 1 0.468751 1 0.545502 1 0.829058 1 0.407683 1 0.997953 1 0.869681 1 0.175915 1 0.482452 1 0.475552 1 0.505184 1 0.655279 1 0.943082 1 0.199512 1 0.295483 1 0.179568 1 0.798481 1 0.368876 1 0.260242 1 0.674893 1 0.149758 1 0.696372 1 0.583875 1 0.439670 1 0.330625 1 0.472197 1 0.999403 1 0.985789 1 0.550702 1 0.082489 1 0.176053 1 0.437216 1 0.790026 1 0.915790 1 0.367492 1 0.331098 1 0.334783 1 0.242419 1 0.356946 1 0.958178 1 0.948617 1 0.973846 1 0.963558 1 0.628255 1 0.872385 1 0.200812 1 0.772423 1 0.626152 1 0.931120 1 0.869477 1 0.427870 1 0.478616 1 0.830816 1 0.292343 1 0.762211 1 0.856590 1 0.991772 1 0.407430 1 0.841768 1 0.994712 1 0.584026 1 0.939134 1 0.519589 1 0.413330 1 0.430420 1 0.876543 1 0.918144 1 0.257695 1 0.514730 1 0.508498 1 0.984377 1 0.790028 1 0.855552 1 0.535073 1 0.551031 1 0.252031 1 0.319110 1 0.113789 1 0.637546 1 0.643690 1 0.963985 1 0.456047 1 0.414982 1 0.972483 1 0.869804 1 0.944376 1 0.787812 1 0.283945 1 0.203999 1 0.554331 1 0.567933 1 0.821615 1 0.873010 1 0.371816 1 0.698961 1 0.961110 1 0.980511 1 0.989853 1 0.937810 1 0.936662 1 0.324579 1 0.359843 1 0.215944 1 0.613819 1 0.423150 1 0.906777 1 0.887707 1 0.176172 1 0.968325 1 0.986548 1 0.195217 1 0.587830 1 0.756992 1 0.777562 1 0.707046 1 0.738995 1 0.286345 1 0.789376 1 0.814145 1 0.822103 1 0.406341 1 0.390339 1 0.975730 1 0.293007 1 0.530915 1 0.960199 1 0.391471 1 0.605358 1 0.207281 1 0.458746 1 0.696568 1 0.509491 1 0.134983 1 0.950053 1 0.463996 1 0.753521 1 0.923987 1 0.606188 1 0.797936 1 0.586173 1 0.249872 1 0.539036 1 0.472273 1 0.976577 1 0.797410 1 0.566338 1 0.583427 1 0.950851 1 0.328236 1 0.597111 1 0.086502 1 0.912961 1 0.392108 1 0.712717 1 0.790371 1 0.447803 1 0.389136 1 0.440916 1 0.293493 1 0.144712 1 0.967066 1 0.997509 1 0.990191 1 0.660893 1 0.994065 1 0.908784 1 0.836052 1 0.499761 1 0.246762 1 0.997673 1 0.541196 1 0.823648 1 0.404640 1 0.326467 1 0.873029 1 0.465074 1 0.234431 1 0.379797 1 0.811520 1 0.952070 1 0.878320 1 0.376741 1 0.320012 1 0.969400 1 0.677589 1 0.256698 1 0.998830 1 0.371146 1 0.172079 1 0.528761 1 0.332756 1 0.799551 1 0.919714 1 0.207547 1 0.848362 1 0.919832 1 0.990312 1 0.893775 1 0.827469 1 0.461076 1 0.767696 1 0.609853 1 0.876977 1 0.560001 1 0.972494 1 0.721933 1 0.417107 1 0.306512 1 0.341276 1 0.482288 1 0.900483 1 0.685084 1 0.985062 1 0.767563 1 0.312221 1 0.894842 1 0.829456 1 0.760546 1 0.551352 1 0.116924 1 0.426459 1 0.382491 1 0.675750 1 0.351868 1 0.999281 1 0.769412 1 0.845256 1 0.743715 1 0.601886 1 0.962465 1 0.733256 1 0.886232 1 0.307794 1 0.583630 1 0.319106 1 0.470708 1 0.199347 1 0.611603 1 0.160888 1 0.589011 1 0.583122 1 0.451697 1 0.506154 1 0.162179 1 0.989407 1 0.333486 1 0.362925 1 0.416385 1 0.989333 1 0.654697 1 0.244889 1 0.933457 1 0.252514 1 0.925494 1 0.758218 1 0.733942 1 0.956787 1 0.956222 1 0.982269 1 0.360428 1 0.710354 1 0.264483 1 0.587342 1 0.266238 1 0.414338 1 0.992710 1 0.153271 1 0.991954 1 0.550796 1 0.945362 1 0.313811 1 0.375057 1 0.621668 1 0.322070 1 0.399560 1 0.330216 1 0.193431 1 0.367368 1 0.997659 1 0.756441 1 0.980213 1 0.245794 1 0.171174 1 0.901552 1 0.289471 1 0.912648 1 0.914671 1 0.097500 1 0.882654 1 0.270287 1 0.761025 1 0.461164 1 0.246313 1 0.990060 1 0.889848 1 0.935771 1 0.519428 1 0.240695 1 0.263323 1 0.976139 1 0.820804 1 0.702725 1 0.546145 1 0.185382 1 0.999647 1 0.980148 1 0.987230 1 0.689504 1 0.251193 1 0.404115 1 0.785756 1 0.945905 1 0.905972 1 0.981946 1 0.890601 1 0.615678 1 0.194681 1 0.342397 1 0.801903 1 0.746387 1 0.680251 1 0.184130 1 0.709146 1 0.975096 1 0.374466 1 0.317607 1 0.163794 1 0.636031 1 0.726571 1 0.141257 1 0.504983 1 0.999837 1 0.808396 1 0.379365 1 0.290091 1 0.169865 1 0.202294 1 0.667324 1 0.396280 1 0.374682 1 0.370152 1 0.110587 1 0.457672 1 0.791182 1 0.596796 1 0.596882 1 0.873977 1 0.473555 1 0.887963 1 0.282396 1 0.763333 1 0.519811 1 0.596045 1 0.383937 1 0.784873 1 0.947198 1 0.478278 1 0.963622 1 0.100499 1 0.973819 1 0.659619 1 0.745640 1 0.334436 1 0.148020 1 0.708665 1 0.700377 1 0.143497 1 0.241637 1 0.618316 1 0.665628 1 0.980815 1 0.564688 1 0.716932 1 0.742421 1 0.237620 1 0.468619 1 0.738449 1 0.223148 1 0.988013 1 0.249012 1 0.887625 1 0.917326 1 0.472351 1 0.693857 1 0.382378 1 0.448459 1 0.741563 1 0.332897 1 0.877021 1 0.360159 1 0.507637 1 0.583936 1 0.178027 1 0.672808 1 0.540276 1 0.134290 1 0.683319 1 0.908457 1 0.787424 1 0.358459 1 0.995941 1 0.223101 1 0.640256 1 0.734744 1 0.569501 1 0.180380 1 0.421979 1 0.473584 1 0.413173 1 0.742320 1 0.624802 1 0.988307 1 0.810158 1 0.358828 1 0.958402 1 0.738277 1 0.775930 1 0.548018 1 0.278954 1 0.410710 1 0.149680 1 0.685617 1 0.953071 1 0.352321 1 0.839097 1 0.835819 1 0.878863 1 0.800975 1 0.290992 1 0.535070 1 0.508981 1 0.201346 1 0.804177 1 0.837956 1 0.709344 1 0.375313 1 0.605304 1 0.967345 1 0.379656 1 0.407117 1 0.907559 1 0.469760 1 0.251801 1 0.717584 1 0.429871 1 0.615741 1 0.876875 1 0.821704 1 0.428275 1 0.268759 1 0.648500 1 0.480048 1 0.460710 1 0.550294 1 0.985857 1 0.557009 1 0.667939 1 0.483268 1 0.182358 1 0.882426 1 0.985387 1 0.133033 1 0.919140 1 0.505496 1 0.948688 1 0.312299 1 0.650003 1 0.205067 1 0.260702 1 0.319139 1 0.534409 1 0.989519 1 0.275242 1 0.583054 1 0.702954 1 0.904549 1 0.992833 1 0.340008 1 0.370318 1 0.158859 1 0.297735 1 0.999120 1 0.973677 1 0.538981 1 0.994776 1 0.158464 1 0.566142 1 0.178852 1 0.541794 1 0.232754 1 0.284492 1 0.478018 1 0.169482 1 0.280893 1 0.998814 1 0.931275 1 0.506826 1 0.325638 1 0.516284 1 0.190292 1 0.877130 1 0.859392 1 0.822940 1 0.577376 1 0.747739 1 0.998258 1 0.240858 1 0.496953 1 0.388332 1 0.914978 1 0.306910 1 0.541780 1 0.292556 1 0.539463 1 0.218479 1 0.807644 1 0.214301 1 0.461172 1 0.857531 1 0.207622 1 0.122410 1 0.287506 1 0.945664 1 0.703569 1 0.777659 1 0.111493 1 0.164215 1 0.393527 1 0.961996 1 0.843911 1 0.863385 1 0.942856 1 0.760671 1 0.714409 1 0.128056 1 0.961902 1 0.708974 1 0.976685 1 0.216562 1 0.619098 1 0.719510 1 0.652712 1 0.494969 1 0.734684 1 0.512034 1 0.522211 1 0.903048 1 0.370717 1 0.349195 1 0.981819 1 0.731405 1 0.751758 1 0.251516 1 0.193082 1 0.744819 1 0.329895 1 0.875614 1 0.298881 1 0.973990 1 0.618957 1 0.451516 1 0.985649 1 0.527659 1 0.825670 1 0.218408 1 0.126924 1 0.267961 1 0.782058 1 0.622921 1 0.326873 1 0.927021 1 0.289485 1 0.125176 1 0.765069 1 0.736871 1 0.823919 1 0.535411 1 0.515319 1 0.703224 1 0.803293 1 0.562315 1 0.388277 1 0.997210 1 0.265274 1 0.344101 1 0.497755 1 0.794087 1 0.588230 1 0.254587 1 0.162585 1 0.698165 1 0.263256 1 0.326259 1 0.933012 1 0.180998 1 0.309696 1 0.996031 1 0.546406 1 0.266824 1 0.649209 1 0.730959 1 0.971581 1 0.919649 1 0.367945 1 0.998544 1 0.996720 1 0.999004 1 0.486428 1 0.910452 1 0.460370 1 0.471276 1 0.836106 1 0.299966 1 0.997445 1 0.984086 1 0.678537 1 0.966327 1 0.518215 1 0.302961 1 0.238525 1 0.610655 1 0.998673 1 0.375415 1 0.379624 1 0.389513 1 0.742216 1 0.960543 1 0.668613 1 0.759907 1 0.433320 1 0.414963 1 0.442713 1 0.988916 1 0.837448 1 0.863874 1 0.267695 1 0.522644 1 0.800495 1 0.327740 1 0.812860 1 0.289598 1 0.874566 1 0.369449 1 0.193869 1 0.609715 1 0.284394 1 0.743808 1 0.889241 1 0.978042 1 0.710523 1 0.504427 1 0.495047 1 0.605851 1 0.724944 1 0.832177 1 0.936333 1 0.972587 1 0.703561 1 0.883048 1 0.689259 1 0.219179 1 0.997692 1 0.809320 1 0.733253 1 0.822048 1 0.600985 1 0.856789 1 0.776612 1 0.587507 1 0.957979 1 0.826272 1 0.891227 1 0.280949 1 0.255210 1 0.166538 1 0.176758 1 0.386082 1 0.989154 1 0.858513 1 0.243890 1 0.099804 1 0.806163 1 0.820158 1 0.918441 1 0.663601 1 0.529139 1 0.511319 1 0.199121 1 0.547935 1 0.797450 1 0.982004 1 0.734244 1 0.987643 1 0.219609 1 0.267612 1 0.983548 1 0.560699 1 0.352486 1 0.269155 1 0.805139 1 0.999484 1 0.596461 1 0.972070 1 0.117446 1 0.789000 1 0.548896 1 0.408143 1 0.559658 1 0.582560 1 0.294808 1 0.157950 1 0.663138 1 0.462594 1 0.314265 1 0.694904 1 0.157477 1 0.985876 1 0.625129 1 0.349561 1 0.412362 1 0.338757 1 0.907080 1 0.268681 1 0.914804 1 0.734547 1 0.541408 1 0.472324 1 0.719941 1 0.369389 1 0.344526 1 0.804363 1 0.499525 1 0.246340 1 0.532460 1 0.981017 1 0.891871 1 0.888082 1 0.368161 1 0.883952 1 0.271121 1 0.120298 1 0.477704 1 0.244705 1 0.119243 1 0.782626 1 0.397295 1 0.841987 1 0.713588 1 0.911412 1 0.757764 1 0.467202 1 0.070076 1 0.601712 1 0.984783 1 0.382101 1 0.313829 1 0.868511 1 0.378151 1 0.287369 1 0.503372 1 0.521788 1 0.884839 1 0.292519 1 0.501159 1 0.873841 1 0.265659 1 0.999885 1 0.416669 1 0.739170 1 0.991011 1 0.650814 1 0.627901 1 0.985237 1 0.368562 1 0.275318 1 0.442113 1 0.476913 1 0.714798 1 0.097049 1 0.517255 1 0.382918 1 0.800538 1 0.960276 1 0.369063 1 0.134081 1 0.223366 1 0.751962 1 0.817908 1 0.802223 1 0.450539 1 0.627856 1 0.686933 1 0.227784 1 0.980339 1 0.949892 1 0.999834 1 0.427481 1 0.895529 1 0.401942 1 0.339324 1 0.203249 1 0.943331 1 0.354823 1 0.360071 1 0.695548 1 0.460950 1 0.991650 1 0.426183 1 0.482050 1 0.380772 1 0.817953 1 0.226309 1 0.874502 1 0.780187 1 0.178205 1 0.258732 1 0.902856 1 0.761972 1 0.984725 1 0.720337 1 0.424202 1 0.883229 1 0.450678 1 0.245048 1 0.441499 1 0.179777 1 0.945495 1 0.822193 1 0.456186 1 0.345266 1 0.990391 1 0.114259 1 0.350416 1 0.555712 1 0.427766 1 0.247565 1 0.255934 1 0.507951 1 0.919584 1 0.438054 1 0.266437 1 0.621780 1 0.997750 1 0.609860 1 0.993661 1 0.292092 1 0.999365 1 0.821120 1 0.483682 1 0.876479 1 0.808978 1 0.903529 1 0.466778 1 0.424250 1 0.537782 1 0.610573 1 0.560311 1 0.914667 1 0.393118 1 0.852088 1 0.380278 1 0.531279 1 0.970810 1 0.634695 1 0.375392 1 0.810592 1 0.303512 1 0.284428 1 0.432416 1 0.858744 1 0.559308 1 0.090508 1 0.632289 1 0.863687 1 0.997154 1 0.484855 1 0.551206 1 0.310903 1 0.637225 1 0.393616 1 0.968623 1 0.467321 1 0.608537 1 0.168762 1 0.525032 1 0.783765 1 0.622957 1 0.372776 1 0.471403 1 0.805857 1 0.586161 1 0.915351 1 0.331707 1 0.924127 1 0.242538 1 0.398361 1 0.765778 1 0.123529 1 0.900437 1 0.971512 1 0.224415 1 0.658808 1 0.450722 1 0.738780 1 0.982755 1 0.707199 1 0.419838 1 0.896422 1 0.470162 1 0.998075 1 0.996496 1 0.162638 1 0.447893 1 0.510106 1 0.394507 1 0.999945 1 0.626236 1 0.342571 1 0.947453 1 0.965403 1 0.826579 1 0.652280 1 0.201659 1 0.829772 1 0.259249 1 0.812482 1 0.956063 1 0.413379 1 0.571229 1 0.548497 1 0.666957 1 0.836572 1 0.438627 1 0.696646 1 0.484428 1 0.933016 1 0.523086 1 0.995823 1 0.383404 1 0.610499 1 0.403552 1 0.381227 1 0.150424 1 0.063152 1 0.853684 1 0.806115 1 0.206876 1 0.088530 1 0.398102 1 0.509967 1 0.676376 1 0.661176 1 0.729745 1 0.866367 1 0.771008 1 0.494803 1 0.956462 1 0.595665 1 0.990119 1 0.255327 1 0.979235 1 0.534327 1 0.664538 1 0.574345 1 0.281260 1 0.454363 1 0.965932 1 0.383448 1 0.628119 1 0.257415 1 0.853284 1 0.947164 1 0.457094 1 0.194532 1 0.118154 1 0.756829 1 0.594467 1 0.346468 1 0.526230 1 0.143957 1 0.900864 1 0.953442 1 0.800432 1 0.743216 1 0.878822 1 0.996541 1 0.267979 1 0.768923 1 0.382220 1 0.803742 1 0.791416 1 0.287201 1 0.144012 1 0.664487 1 0.443004 1 0.539004 1 0.995368 1 0.946718 1 0.148975 1 0.985028 1 0.638625 1 0.927956 1 0.888829 1 0.919330 1 0.490783 1 0.451149 1 0.709545 1 0.188397 1 0.921393 1 0.621931 1 0.716012 1 0.234076 1 0.976255 1 0.260857 1 0.272972 1 0.829259 1 0.806674 1 0.999953 1 0.399217 1 0.701852 1 0.891193 1 0.999962 1 0.906673 1 0.696423 1 0.823356 1 0.172087 1 0.430418 1 0.387608 1 0.958035 1 0.364095 1 0.643808 1 0.853407 1 0.993225 1 0.140173 1 0.213673 1 0.503788 1 0.441331 1 0.685821 1 0.403496 1 0.457086 1 0.501767 1 0.407886 1 0.759945 1 0.398053 1 0.573047 1 0.489970 1 0.631501 1 0.153862 1 0.956180 1 0.529012 1 0.216767 1 0.409909 1 0.338812 1 0.111893 1 0.266414 1 0.400568 1 0.962985 1 0.412879 1 0.931861 1 0.589446 1 0.324251 1 0.335830 1 0.933755 1 0.977765 1 0.322084 1 0.803528 1 0.663800 1 0.333739 1 0.316704 1 0.292866 1 0.940326 1 0.520022 1 0.337871 1 0.720481 1 0.375610 1 0.832435 1 0.580528 1 0.895279 1 0.805238 1 0.748163 1 0.495380 1 0.219166 1 0.742912 1 0.170278 1 0.582330 1 0.463223 1 0.487574 1 0.209051 1 0.382690 1 0.858764 1 0.974075 1 0.355060 1 0.381377 1 0.561027 1 0.165383 1 0.799795 1 0.719559 1 0.908491 1 0.711148 1 0.958834 1 0.451852 1 0.609283 1 0.995466 1 0.550506 1 0.355395 1 0.602957 1 0.935804 1 0.979515 1 0.873488 1 0.859046 1 0.992732 1 0.259916 1 0.299708 1 0.781201 1 0.676102 1 0.532441 1 0.997121 1 0.792059 1 0.166563 1 0.950526 1 0.462952 1 0.835491 1 0.991273 1 0.903064 1 0.606654 1 0.600186 1 0.678547 1 0.515919 1 0.708163 1 0.863987 1 0.414965 1 0.887771 1 0.589066 1 0.587764 1 0.298617 1 0.657275 1 0.311928 1 0.304175 1 0.784398 1 0.330171 1 0.536593 1 0.778503 1 0.662183 1 0.371361 1 0.394404 1 0.888468 1 0.613852 1 0.940724 1 0.936882 1 0.466149 1 0.471351 1 0.966896 1 0.949215 1 0.575751 1 0.381955 1 0.517479 1 0.508392 1 0.949609 1 0.384188 1 0.938617 1 0.354674 1 0.771984 1 0.665516 1 0.995535 1 0.378643 1 0.279846 1 0.089165 1 0.697303 1 0.814405 1 0.880499 1 0.903712 1 0.999823 1 0.990736 1 0.943575 1 0.972019 1 0.283640 1 0.974781 1 0.339850 1 0.864415 1 0.340806 1 0.997556 1 0.799319 1 0.459515 1 0.778546 1 0.505675 1 0.586951 1 0.128935 1 0.168290 1 0.352857 1 0.568789 1 0.662660 1 0.610453 1 0.670892 1 0.929196 1 0.231695 1 0.606747 1 0.326122 1 0.469373 1 0.225848 1 0.262936 1 0.176320 1 0.989882 1 0.955156 1 0.914685 1 0.740013 1 0.999956 1 0.763539 1 0.750906 1 0.072885 1 0.206479 1 0.182898 1 0.286479 1 0.920367 1 0.427836 1 0.999614 1 0.351434 1 0.633652 1 0.594701 1 0.828425 1 0.983131 1 0.441269 1 0.747208 1 0.484830 1 0.655180 1 0.841001 1 0.172078 1 0.129034 1 0.880257 1 0.305637 1 0.972629 1 0.292675 1 0.278600 1 0.793469 1 0.663047 1 0.457356 1 0.999876 1 0.859499 1 0.821664 1 0.508951 1 0.502228 1 0.619577 1 0.657967 1 0.332536 1 0.841597 1 0.925621 1 0.772685 1 0.340154 1 0.155144 1 0.489814 1 0.984267 1 0.352547 1 0.523926 1 0.998275 1 0.678651 1 0.444499 1 0.275927 1 0.214200 1 0.846986 1 0.654762 1 0.449298 1 0.678555 1 0.990253 1 0.432580 1 0.098283 1 0.132440 1 0.999223 1 0.992069 1 0.190786 1 0.612635 1 0.929390 1 0.915303 1 0.889801 1 0.412893 1 0.525434 1 0.394486 1 0.853170 1 0.105171 1 0.962139 1 0.335761 1 0.722218 1 0.342734 1 0.626913 1 0.311325 1 0.661178 1 0.809466 1 0.341703 1 0.920992 1 0.931668 1 0.946224 1 0.519047 1 0.521931 1 0.957365 1 0.236920 1 0.528819 1 0.979206 1 0.708034 1 0.538354 1 0.993887 1 0.990300 1 0.291539 1 0.233378 1 0.321676 1 0.384099 1 0.237638 1 0.932401 1 0.702583 1 0.515933 1 0.194610 1 0.542982 1 0.643147 1 0.303781 1 0.895698 1 0.478193 1 0.449268 1 0.594333 1 0.738371 1 0.854861 1 0.262802 1 0.432748 1 0.735480 1 0.599076 1 0.516257 1 0.749368 1 0.573140 1 0.665238 1 0.996952 1 0.848735 1 0.493257 1 0.584580 1 0.990715 1 0.736759 1 0.422806 1 0.929266 1 0.482401 1 0.998021 1 0.240173 1 0.909533 1 0.786468 1 0.619782 1 0.280835 1 0.271109 1 0.483228 1 0.556524 1 0.176423 1 0.318981 1 0.733025 1 0.730152 1 0.436023 1 0.479008 1 0.162935 1 0.897162 1 0.320420 1 0.999833 1 0.995873 1 0.523206 1 0.942911 1 0.537652 1 0.672791 1 0.952258 1 0.855959 1 0.665578 1 0.841265 1 0.668164 1 0.946828 1 0.714719 1 0.352946 1 0.713102 1 0.765266 1 0.491022 1 0.905334 1 1.000000 1 Name: p1_conf, dtype: int64
image_prediction.p1_dog.value_counts()
True 1532 False 543 Name: p1_dog, dtype: int64
image_prediction.p2.value_counts()
Labrador_retriever 104 golden_retriever 92 Cardigan 73 Chihuahua 44 Pomeranian 42 French_bulldog 41 Chesapeake_Bay_retriever 41 toy_poodle 37 cocker_spaniel 34 Siberian_husky 33 miniature_poodle 33 beagle 28 Pembroke 27 collie 27 Eskimo_dog 27 kuvasz 26 Italian_greyhound 22 American_Staffordshire_terrier 21 Pekinese 21 chow 20 Samoyed 20 miniature_pinscher 20 toy_terrier 20 malinois 20 Norwegian_elkhound 19 Boston_bull 19 Staffordshire_bullterrier 18 Irish_terrier 17 pug 17 Shih-Tzu 16 kelpie 16 Tibetan_mastiff 15 whippet 15 basset 15 bull_mastiff 14 Great_Pyrenees 14 German_shepherd 14 West_Highland_white_terrier 13 boxer 13 malamute 13 Shetland_sheepdog 13 soft-coated_wheaten_terrier 12 black-and-tan_coonhound 12 Border_collie 12 doormat 12 seat_belt 12 redbone 12 Irish_setter 11 Lhasa 11 teddy 11 borzoi 11 English_springer 10 Siamese_cat 10 Brabancon_griffon 10 groenendael 10 Welsh_springer_spaniel 9 Maltese_dog 9 ice_bear 9 Lakeland_terrier 9 papillon 8 Great_Dane 8 standard_poodle 8 Rhodesian_ridgeback 8 Rottweiler 8 Brittany_spaniel 8 Tibetan_terrier 8 schipperke 8 Airedale 7 Newfoundland 7 German_short-haired_pointer 7 flat-coated_retriever 7 Ibizan_hound 7 vizsla 7 English_setter 7 Saint_Bernard 6 guinea_pig 6 llama 6 Walker_hound 6 Greater_Swiss_Mountain_dog 6 Old_English_sheepdog 6 Doberman 6 bluetick 6 Norfolk_terrier 6 bathtub 6 keeshond 6 silky_terrier 6 Sussex_spaniel 6 basenji 6 bloodhound 6 bath_towel 6 hamster 6 Bedlington_terrier 5 Leonberg 5 tub 5 Afghan_hound 5 Norwich_terrier 5 Yorkshire_terrier 5 sunglasses 5 wire-haired_fox_terrier 4 Mexican_hairless 4 badger 4 Border_terrier 4 muzzle 4 Saluki 4 studio_couch 4 Blenheim_spaniel 4 weasel 4 dalmatian 4 Arctic_fox 4 mink 4 window_screen 4 koala 4 briard 4 dishwasher 4 cairn 4 Arabian_camel 4 sea_lion 4 otterhound 4 Dandie_Dinmont 4 Angora 4 ram 4 skunk 4 hog 4 toilet_seat 3 lakeside 3 paddle 3 feather_boa 3 miniature_schnauzer 3 dingo 3 Irish_wolfhound 3 Appenzeller 3 American_black_bear 3 fur_coat 3 oscilloscope 3 envelope 3 swab 3 carton 3 Indian_elephant 3 fountain 3 tennis_ball 3 hen 3 beach_wagon 3 black-footed_ferret 3 monitor 3 shopping_basket 3 Christmas_stocking 3 Weimaraner 3 meerkat 3 cash_machine 3 bow_tie 2 American_alligator 2 giant_schnauzer 2 palace 2 quilt 2 minivan 2 cup 2 orange 2 prison 2 hare 2 tabby 2 mongoose 2 Sealyham_terrier 2 quill 2 gibbon 2 frilled_lizard 2 ox 2 plow 2 black_widow 2 slug 2 jean 2 jaguar 2 English_foxhound 2 Persian_cat 2 warthog 2 bison 2 toyshop 2 beaver 2 harvester 2 swing 2 wallet 2 gorilla 2 rotisserie 2 punching_bag 2 entertainment_center 2 mask 2 cock 2 sleeping_bag 2 terrapin 2 rhinoceros_beetle 2 pillow 2 four-poster 2 corn 2 goldfish 2 prayer_rug 2 house_finch 2 chain_saw 2 binoculars 2 marmot 2 great_white_shark 2 macaque 2 loggerhead 2 Australian_terrier 2 wig 2 curly-coated_retriever 2 crossword_puzzle 2 dhole 2 sports_car 2 barrel 2 bighorn 2 Scotch_terrier 2 radiator 2 bakery 2 tow_truck 2 tailed_frog 2 pickup 1 hummingbird 1 toaster 1 red_fox 1 soccer_ball 1 hay 1 affenpinscher 1 shopping_cart 1 neck_brace 1 porcupine 1 hair_spray 1 mailbox 1 shower_cap 1 giant_panda 1 umbrella 1 polecat 1 water_buffalo 1 water_bottle 1 dam 1 nail 1 necklace 1 bearskin 1 bagel 1 quail 1 maillot 1 komondor 1 grey_fox 1 crib 1 wood_rabbit 1 seashore 1 birdhouse 1 desk 1 breakwater 1 bobsled 1 purse 1 cowboy_hat 1 police_van 1 lesser_panda 1 siamang 1 laptop 1 sombrero 1 patio 1 lampshade 1 toucan 1 rifle 1 crate 1 volcano 1 shovel 1 handkerchief 1 crutch 1 waffle_iron 1 cockroach 1 hamper 1 moped 1 pelican 1 snowmobile 1 stingray 1 spotlight 1 can_opener 1 wombat 1 spatula 1 web_site 1 white_wolf 1 stove 1 dock 1 boathouse 1 sweatshirt 1 sandbar 1 cliff 1 common_newt 1 grey_whale 1 dugong 1 shower_curtain 1 tarantula 1 armadillo 1 otter 1 minibus 1 television 1 chain_mail 1 sliding_door 1 sock 1 rain_barrel 1 indri 1 table_lamp 1 hand-held_computer 1 tray 1 printer 1 sulphur_butterfly 1 bow 1 Gila_monster 1 canoe 1 medicine_chest 1 washbasin 1 Bernese_mountain_dog 1 folding_chair 1 mashed_potato 1 space_heater 1 sunglass 1 window_shade 1 rule 1 barbershop 1 pier 1 mosquito_net 1 banded_gecko 1 cowboy_boot 1 shoji 1 cardigan 1 hatchet 1 peacock 1 jigsaw_puzzle 1 solar_dish 1 mud_turtle 1 African_hunting_dog 1 racket 1 snorkel 1 coral_fungus 1 ice_lolly 1 chimpanzee 1 paper_towel 1 triceratops 1 hair_slide 1 spindle 1 cloak 1 sea_urchin 1 snail 1 bib 1 hotdog 1 cannon 1 assault_rifle 1 hyena 1 dining_table 1 goose 1 saltshaker 1 ashcan 1 basketball 1 killer_whale 1 breastplate 1 Kerry_blue_terrier 1 projectile 1 spotted_salamander 1 cradle 1 Madagascar_cat 1 standard_schnauzer 1 sandal 1 coral_reef 1 lifeboat 1 china_cabinet 1 confectionery 1 knee_pad 1 computer_keyboard 1 Japanese_spaniel 1 bannister 1 EntleBucher 1 screw 1 streetcar 1 timber_wolf 1 wallaby 1 home_theater 1 cornet 1 cougar 1 sarong 1 menu 1 drake 1 dumbbell 1 turnstile 1 academic_gown 1 apron 1 European_gallinule 1 torch 1 comic_book 1 bathing_cap 1 iPod 1 accordion 1 junco 1 promontory 1 horse_cart 1 cab 1 lighter 1 coffee_mug 1 tiger 1 barracouta 1 lawn_mower 1 trench_coat 1 tree_frog 1 Windsor_tie 1 platypus 1 tick 1 bucket 1 leafhopper 1 oxygen_mask 1 brown_bear 1 Name: p2, dtype: int64
image_prediction.p2_conf.value_counts()
6.936170e-02 3 2.790660e-02 2 1.936540e-01 2 2.719290e-01 2 3.142710e-03 2 1.970210e-01 2 3.476090e-01 2 1.510470e-01 2 5.272400e-02 2 1.531260e-01 2 1.192560e-01 2 2.271500e-01 2 5.709090e-02 2 1.499500e-01 2 2.511950e-02 2 1.659300e-01 2 1.905030e-01 2 1.276300e-02 2 1.813510e-01 2 3.251060e-01 2 2.008910e-02 2 1.728440e-01 2 1.422040e-01 2 1.524450e-01 2 5.295590e-02 2 9.998390e-02 2 9.394020e-02 2 2.527060e-01 2 1.407980e-01 2 1.306110e-01 2 2.098520e-01 2 2.956900e-01 2 1.595090e-01 2 1.920310e-01 2 3.685660e-01 2 1.129430e-01 2 1.662460e-01 2 4.551860e-02 2 1.083820e-01 2 2.277160e-01 2 2.515300e-01 2 1.185630e-03 2 3.370530e-01 2 1.504870e-01 2 3.043590e-03 2 1.203580e-01 2 4.999530e-02 2 1.713930e-01 2 9.509520e-02 2 3.982600e-01 2 4.231910e-02 2 1.554130e-01 2 6.160450e-02 2 1.371870e-01 2 4.446180e-02 2 2.727340e-01 2 2.197210e-01 2 1.158370e-02 2 3.392510e-01 2 6.489700e-02 2 8.349880e-02 2 2.013580e-01 2 2.419290e-01 2 2.457730e-01 2 1.326400e-01 2 1.628500e-01 2 5.495000e-02 2 3.452980e-01 2 1.973140e-01 2 1.664140e-02 2 4.330580e-02 1 2.622710e-01 1 6.300490e-03 1 2.252940e-02 1 3.404740e-01 1 5.421470e-02 1 6.307820e-02 1 2.040540e-02 1 4.240760e-02 1 6.869820e-02 1 1.335790e-01 1 5.663940e-02 1 1.160420e-01 1 2.428930e-02 1 2.108450e-02 1 1.054160e-01 1 1.604390e-01 1 2.731760e-01 1 9.502280e-02 1 1.324490e-01 1 1.490640e-01 1 2.702260e-01 1 2.708930e-01 1 1.952230e-02 1 1.594990e-02 1 5.508960e-02 1 4.032130e-03 1 2.733950e-02 1 1.329440e-01 1 1.107480e-01 1 1.280770e-01 1 3.855870e-02 1 2.660300e-01 1 1.917890e-01 1 3.191360e-01 1 3.078010e-01 1 1.413120e-03 1 4.401220e-01 1 5.820500e-02 1 6.483100e-02 1 1.142660e-02 1 2.078350e-01 1 1.360120e-01 1 1.996190e-01 1 4.057410e-02 1 2.890960e-02 1 2.390150e-01 1 3.349290e-01 1 6.325080e-03 1 9.249390e-02 1 2.030670e-02 1 6.599040e-02 1 3.972680e-03 1 2.431920e-01 1 7.056710e-02 1 3.066640e-02 1 1.691230e-01 1 3.022190e-01 1 4.338880e-02 1 9.012920e-02 1 1.546300e-01 1 1.150340e-01 1 2.075810e-02 1 3.186460e-01 1 2.588580e-01 1 3.899940e-01 1 3.611780e-04 1 2.384500e-01 1 1.786710e-01 1 3.813610e-02 1 1.482580e-01 1 3.535240e-02 1 4.512190e-01 1 1.596770e-01 1 1.466540e-01 1 3.066120e-01 1 1.074790e-01 1 1.545940e-01 1 2.280900e-04 1 2.421090e-02 1 5.334520e-03 1 2.440400e-01 1 4.605650e-01 1 1.116470e-01 1 1.784040e-01 1 2.133490e-01 1 3.176170e-01 1 2.041770e-01 1 1.068250e-02 1 1.406820e-01 1 2.016750e-01 1 5.274420e-02 1 3.632220e-01 1 5.298000e-02 1 1.256520e-01 1 1.196820e-01 1 3.742230e-01 1 1.435280e-01 1 2.228340e-03 1 9.624210e-02 1 1.841720e-01 1 1.060750e-01 1 1.856440e-01 1 1.753820e-01 1 1.601670e-02 1 1.170030e-01 1 1.799380e-01 1 2.330850e-03 1 1.268970e-01 1 6.945700e-02 1 7.472450e-03 1 2.074580e-01 1 2.914470e-01 1 4.753560e-03 1 1.550340e-01 1 2.563020e-01 1 1.377100e-01 1 4.125930e-02 1 1.676800e-03 1 2.352570e-02 1 1.341150e-02 1 1.812100e-01 1 1.498420e-01 1 1.131290e-04 1 1.614780e-01 1 6.917770e-03 1 1.545150e-01 1 2.263410e-02 1 2.338910e-01 1 3.904130e-01 1 4.231190e-02 1 1.041160e-01 1 8.388370e-03 1 1.295670e-01 1 2.869850e-01 1 7.523000e-02 1 1.785230e-01 1 2.161630e-01 1 1.448950e-05 1 1.442720e-01 1 1.978970e-01 1 2.749010e-01 1 1.602730e-01 1 2.841790e-02 1 2.159750e-01 1 4.510380e-01 1 1.537000e-01 1 8.025580e-03 1 5.432210e-02 1 8.860530e-02 1 2.902680e-01 1 8.943470e-03 1 9.034640e-02 1 1.059690e-01 1 3.772120e-02 1 3.180170e-01 1 4.932910e-02 1 6.468330e-02 1 2.432970e-01 1 8.863460e-02 1 3.164560e-01 1 2.265640e-01 1 9.804040e-02 1 7.270220e-02 1 2.583720e-01 1 4.047220e-01 1 7.665280e-02 1 2.117660e-01 1 5.390140e-02 1 9.349410e-02 1 1.723980e-02 1 2.794790e-01 1 1.209460e-01 1 1.605800e-01 1 1.220790e-01 1 2.905410e-02 1 2.947280e-02 1 1.928740e-02 1 3.502950e-02 1 1.685040e-02 1 4.309810e-05 1 2.735100e-02 1 1.462220e-01 1 1.186220e-01 1 2.453510e-02 1 1.898900e-01 1 1.102890e-01 1 1.300160e-01 1 1.333680e-01 1 5.192780e-02 1 5.120290e-04 1 2.630610e-02 1 3.308370e-02 1 1.588500e-01 1 1.868730e-01 1 2.652780e-01 1 5.091140e-02 1 1.366020e-01 1 1.388350e-02 1 1.487590e-01 1 1.032520e-02 1 2.182890e-01 1 3.235030e-02 1 5.284950e-02 1 9.906460e-03 1 3.692710e-02 1 9.813140e-02 1 1.453580e-01 1 1.652550e-01 1 2.798540e-03 1 2.636650e-01 1 1.143140e-01 1 4.865240e-02 1 4.947950e-02 1 1.749110e-01 1 2.299030e-01 1 2.702590e-02 1 9.653430e-02 1 1.385840e-01 1 2.326410e-01 1 2.456460e-01 1 2.221140e-01 1 2.004130e-02 1 2.791010e-01 1 1.321380e-01 1 2.689520e-01 1 3.809760e-01 1 1.493910e-01 1 3.369330e-02 1 2.588650e-01 1 2.373110e-01 1 1.893120e-01 1 1.673730e-01 1 1.833950e-03 1 7.535570e-02 1 1.295420e-01 1 2.488850e-01 1 2.245560e-01 1 8.901020e-02 1 9.718290e-02 1 8.428870e-02 1 2.186010e-01 1 1.094200e-01 1 7.442870e-02 1 8.355000e-02 1 4.330460e-02 1 4.819990e-02 1 1.223060e-02 1 8.600480e-02 1 4.082560e-02 1 1.157440e-01 1 7.113980e-02 1 1.063950e-01 1 1.978610e-01 1 7.198090e-02 1 9.161510e-02 1 2.764210e-01 1 8.032410e-04 1 1.042560e-01 1 2.665820e-02 1 1.938310e-01 1 1.175660e-01 1 1.219190e-02 1 2.716550e-01 1 4.920390e-03 1 6.036490e-02 1 4.356450e-03 1 1.343170e-01 1 1.352620e-01 1 2.315730e-01 1 6.813370e-02 1 1.785460e-01 1 1.490160e-02 1 1.543960e-01 1 1.736850e-01 1 3.218220e-02 1 1.569160e-01 1 2.351930e-01 1 3.610830e-03 1 1.768460e-01 1 1.396980e-01 1 4.242810e-02 1 6.546160e-02 1 2.989390e-01 1 2.524170e-01 1 1.704510e-01 1 1.658880e-01 1 6.247970e-02 1 4.233540e-02 1 3.003130e-01 1 1.198700e-01 1 1.879280e-01 1 8.757510e-03 1 2.299440e-01 1 3.359970e-01 1 1.501190e-01 1 1.939050e-01 1 4.411980e-02 1 2.016970e-01 1 2.550330e-01 1 1.736750e-01 1 2.139020e-03 1 1.243530e-01 1 5.729100e-02 1 1.481120e-01 1 1.057800e-01 1 5.952590e-02 1 1.056980e-03 1 2.588690e-01 1 2.587860e-01 1 1.495440e-01 1 7.425700e-02 1 9.404420e-02 1 1.270860e-01 1 1.694960e-01 1 1.463910e-01 1 8.937090e-02 1 2.860480e-02 1 9.662150e-02 1 1.788870e-01 1 1.291140e-01 1 9.828520e-02 1 3.660060e-02 1 7.098720e-03 1 5.786580e-02 1 1.269780e-01 1 8.698080e-02 1 8.750330e-02 1 7.825300e-02 1 1.781570e-01 1 1.399520e-01 1 1.277760e-01 1 1.940440e-01 1 1.585550e-01 1 1.219880e-01 1 1.753160e-01 1 1.866420e-01 1 1.951690e-02 1 1.548540e-01 1 1.768280e-01 1 1.073830e-01 1 2.152180e-01 1 1.718930e-01 1 8.372680e-04 1 2.614110e-01 1 2.228490e-03 1 6.350520e-02 1 1.651320e-01 1 6.248650e-02 1 1.542540e-01 1 1.220190e-01 1 1.040460e-01 1 8.758150e-02 1 3.458060e-01 1 1.742690e-01 1 8.493710e-02 1 2.458620e-01 1 2.237160e-01 1 8.780030e-02 1 1.232900e-01 1 1.211020e-01 1 1.002880e-05 1 1.948670e-01 1 3.356920e-01 1 2.264810e-01 1 3.170530e-01 1 1.802640e-01 1 6.119400e-02 1 3.494010e-01 1 1.848970e-01 1 2.453950e-01 1 1.658710e-01 1 1.332470e-01 1 1.351790e-01 1 1.116220e-01 1 2.363910e-01 1 3.889620e-02 1 3.115400e-01 1 8.112500e-02 1 3.004350e-01 1 2.623020e-01 1 2.013780e-01 1 1.228120e-01 1 1.669270e-01 1 2.288510e-02 1 9.222700e-02 1 2.257700e-01 1 1.127960e-01 1 2.607380e-01 1 2.154360e-01 1 1.294520e-01 1 1.964140e-01 1 4.892770e-02 1 1.895370e-01 1 6.729170e-02 1 2.835450e-01 1 1.124130e-01 1 2.269540e-01 1 5.722080e-02 1 3.065250e-01 1 4.333850e-02 1 6.054760e-04 1 1.566650e-01 1 8.476580e-02 1 4.264940e-02 1 7.314430e-02 1 3.216480e-03 1 4.068790e-03 1 1.215000e-01 1 1.173970e-01 1 2.515460e-01 1 4.803180e-02 1 1.920360e-02 1 4.785420e-02 1 1.407960e-01 1 7.191480e-05 1 7.510100e-02 1 2.181280e-01 1 1.023050e-01 1 3.818360e-01 1 1.796250e-01 1 2.960690e-01 1 1.584630e-01 1 1.155500e-01 1 7.307940e-02 1 1.871550e-01 1 1.194750e-01 1 8.675670e-05 1 8.265160e-02 1 8.778810e-02 1 9.006180e-03 1 1.231410e-01 1 3.505920e-02 1 1.562870e-01 1 1.897120e-01 1 7.042960e-03 1 7.171250e-02 1 2.892880e-01 1 1.882200e-01 1 1.126760e-01 1 1.106580e-01 1 2.446490e-01 1 1.598420e-01 1 1.399090e-01 1 4.549370e-01 1 1.501800e-02 1 2.440220e-01 1 5.937860e-02 1 1.994820e-01 1 1.635510e-01 1 1.051660e-01 1 1.923050e-01 1 8.919390e-03 1 1.348160e-01 1 2.486640e-01 1 5.126530e-02 1 9.351480e-02 1 2.036710e-01 1 1.596720e-01 1 4.669210e-02 1 2.019660e-01 1 1.810820e-01 1 5.135060e-02 1 1.841930e-01 1 1.038420e-01 1 2.060480e-01 1 2.348980e-01 1 1.000640e-03 1 1.216620e-01 1 1.463110e-01 1 2.637880e-01 1 3.647660e-02 1 1.870550e-01 1 2.594970e-02 1 2.622980e-02 1 1.335840e-01 1 9.461490e-02 1 6.673630e-02 1 7.141440e-02 1 1.457810e-02 1 2.293520e-01 1 9.914020e-02 1 1.351760e-01 1 3.180310e-02 1 1.113800e-01 1 3.074070e-01 1 1.201420e-01 1 1.640880e-01 1 1.616750e-02 1 1.692340e-01 1 1.514330e-01 1 1.317530e-01 1 2.806420e-01 1 2.036510e-01 1 2.612880e-01 1 1.803690e-01 1 1.524940e-01 1 2.860590e-01 1 3.551310e-02 1 8.754400e-02 1 1.410940e-01 1 1.089100e-02 1 2.696560e-01 1 1.083200e-02 1 2.669530e-01 1 1.148760e-01 1 1.246800e-01 1 6.519920e-02 1 7.839980e-02 1 7.805970e-02 1 3.240900e-02 1 1.029330e-01 1 2.714850e-01 1 8.585110e-02 1 5.248000e-02 1 3.749680e-02 1 6.248990e-02 1 2.987300e-05 1 8.411190e-02 1 2.022250e-01 1 1.296830e-01 1 1.198050e-01 1 8.992030e-02 1 1.762930e-01 1 1.400070e-01 1 9.679730e-02 1 1.525000e-02 1 1.432370e-02 1 4.987420e-02 1 1.491640e-01 1 7.087310e-03 1 7.737330e-02 1 5.943700e-02 1 1.626470e-01 1 2.229250e-02 1 5.263230e-02 1 4.316570e-01 1 2.039800e-01 1 2.335200e-01 1 2.879550e-01 1 8.908540e-02 1 7.736710e-03 1 2.581240e-01 1 8.492620e-03 1 1.571920e-01 1 1.111060e-01 1 2.638540e-01 1 6.436880e-02 1 2.125890e-01 1 3.008510e-01 1 2.890960e-01 1 4.594790e-02 1 1.725570e-01 1 2.457970e-01 1 3.141490e-01 1 2.218640e-01 1 1.947770e-03 1 1.136720e-01 1 2.234270e-01 1 1.008400e-02 1 2.745400e-01 1 1.124790e-01 1 9.186640e-02 1 8.861850e-03 1 3.101430e-01 1 2.078970e-01 1 1.596210e-04 1 3.622150e-02 1 1.139560e-01 1 3.258980e-01 1 5.989510e-02 1 5.673960e-02 1 7.734700e-02 1 2.305630e-02 1 4.993320e-02 1 3.765740e-01 1 8.439530e-02 1 1.864840e-01 1 5.762530e-02 1 2.186270e-02 1 1.210940e-01 1 9.166100e-02 1 1.688210e-03 1 1.764780e-01 1 1.311130e-01 1 9.712370e-03 1 5.478680e-02 1 1.555660e-01 1 1.748550e-03 1 8.074690e-02 1 1.383410e-02 1 1.289810e-01 1 8.362880e-02 1 1.942510e-01 1 4.766400e-03 1 8.576370e-02 1 2.701880e-01 1 1.349670e-01 1 1.917490e-01 1 2.635500e-01 1 1.865250e-04 1 1.125500e-01 1 8.301100e-02 1 1.029310e-01 1 1.071440e-01 1 1.412410e-01 1 1.892140e-01 1 2.393320e-01 1 1.826070e-02 1 1.513630e-01 1 3.509730e-01 1 2.141450e-01 1 1.978580e-01 1 1.468320e-01 1 1.019270e-01 1 9.064650e-02 1 1.213770e-01 1 9.241410e-02 1 1.513170e-01 1 1.309480e-01 1 2.631880e-02 1 2.147150e-01 1 1.031910e-01 1 3.628610e-01 1 1.014800e-01 1 2.148790e-01 1 2.406530e-01 1 3.120260e-01 1 1.168100e-01 1 2.871780e-01 1 9.707800e-02 1 1.405900e-03 1 1.383830e-01 1 9.460190e-02 1 7.131070e-02 1 3.917100e-01 1 5.934420e-02 1 1.399020e-02 1 1.159840e-01 1 3.391940e-02 1 1.235840e-01 1 2.605040e-01 1 2.290650e-01 1 1.066840e-01 1 1.565810e-01 1 2.221260e-01 1 8.336880e-02 1 1.905690e-01 1 1.438790e-03 1 3.537620e-02 1 2.196460e-01 1 1.640870e-01 1 1.127040e-01 1 1.955730e-01 1 7.026720e-03 1 1.004180e-01 1 1.984760e-02 1 1.273090e-02 1 1.140710e-01 1 1.005710e-01 1 7.928500e-04 1 1.066970e-01 1 3.281730e-01 1 7.419170e-02 1 4.741760e-02 1 1.614880e-01 1 2.802120e-01 1 6.229490e-05 1 1.329280e-01 1 1.307600e-01 1 7.825980e-02 1 2.912960e-02 1 6.060240e-02 1 1.959500e-01 1 2.010840e-04 1 1.908980e-01 1 1.870030e-01 1 2.796000e-01 1 3.563980e-01 1 1.930930e-01 1 2.292280e-01 1 8.580460e-02 1 2.500030e-01 1 2.996030e-01 1 4.794250e-03 1 3.069490e-02 1 1.250460e-01 1 1.579270e-01 1 1.894340e-01 1 9.453760e-02 1 1.435270e-01 1 1.248000e-03 1 5.730620e-02 1 1.512480e-01 1 1.452020e-01 1 9.559390e-02 1 5.878800e-02 1 1.145120e-01 1 2.547170e-01 1 9.231810e-02 1 8.069850e-02 1 1.938040e-01 1 1.385460e-01 1 9.383390e-02 1 3.324610e-01 1 4.034200e-01 1 2.185030e-01 1 1.530960e-01 1 5.924080e-02 1 4.375270e-01 1 2.114240e-01 1 1.627610e-01 1 1.137980e-01 1 1.420730e-01 1 1.157520e-01 1 6.085720e-02 1 1.985600e-01 1 3.661510e-02 1 3.052940e-01 1 4.803830e-02 1 3.057940e-02 1 4.777370e-02 1 1.394070e-01 1 1.826100e-01 1 2.214090e-01 1 6.139290e-02 1 2.027400e-01 1 2.230670e-01 1 6.806610e-02 1 1.532250e-01 1 1.890670e-02 1 1.273330e-01 1 1.539570e-01 1 2.141970e-01 1 1.166220e-01 1 1.824110e-01 1 1.141470e-01 1 9.548660e-02 1 2.618540e-01 1 7.920560e-02 1 1.187690e-01 1 7.591500e-02 1 1.186470e-01 1 7.808850e-04 1 1.966260e-02 1 9.688120e-02 1 1.422740e-01 1 1.731140e-01 1 2.335910e-05 1 1.037080e-01 1 1.091680e-01 1 1.259120e-01 1 1.732580e-02 1 4.647450e-02 1 5.274130e-02 1 1.823110e-02 1 1.218210e-01 1 3.902220e-01 1 2.281100e-02 1 1.671750e-01 1 3.058500e-01 1 1.942070e-02 1 7.435780e-02 1 1.672560e-01 1 2.620570e-02 1 9.371780e-02 1 1.540880e-01 1 1.166130e-02 1 1.479400e-01 1 1.106760e-02 1 1.362450e-01 1 8.840620e-03 1 4.034510e-01 1 1.208530e-01 1 2.499430e-01 1 6.010720e-02 1 2.040820e-01 1 7.238960e-02 1 1.340940e-01 1 1.784060e-01 1 2.065760e-01 1 3.606870e-01 1 2.476210e-01 1 1.925580e-01 1 1.774130e-01 1 1.978190e-01 1 6.693000e-03 1 1.546460e-01 1 1.251190e-01 1 2.852760e-01 1 1.480010e-01 1 2.726210e-01 1 3.117690e-01 1 1.582170e-04 1 2.851490e-02 1 1.536780e-01 1 1.648260e-01 1 2.612100e-02 1 5.990520e-02 1 2.242690e-01 1 1.633620e-01 1 1.607600e-01 1 1.261310e-01 1 3.044700e-01 1 1.657720e-01 1 2.409700e-01 1 5.251140e-02 1 1.757180e-01 1 1.169770e-01 1 1.355920e-02 1 2.436820e-01 1 2.704040e-02 1 2.293510e-01 1 7.420540e-02 1 1.930540e-01 1 1.334460e-01 1 1.085730e-01 1 2.409920e-02 1 2.771910e-01 1 2.169610e-02 1 8.194140e-02 1 6.688020e-02 1 1.603800e-01 1 9.001910e-02 1 1.642430e-02 1 4.621260e-02 1 1.552070e-01 1 8.289800e-02 1 9.602690e-02 1 1.100560e-01 1 8.688670e-02 1 1.775380e-01 1 1.163170e-01 1 9.430650e-03 1 1.260080e-02 1 2.588030e-01 1 2.622390e-01 1 1.393920e-01 1 2.351600e-01 1 1.218110e-01 1 2.126360e-02 1 3.445880e-01 1 3.057600e-01 1 1.251520e-03 1 2.320790e-01 1 7.121240e-03 1 1.519360e-01 1 1.175080e-01 1 1.793390e-02 1 5.493340e-02 1 1.967690e-01 1 1.420580e-01 1 2.102820e-01 1 1.699450e-01 1 3.386420e-01 1 2.707330e-01 1 2.320570e-01 1 9.837810e-02 1 1.379280e-01 1 2.635530e-01 1 1.044510e-01 1 8.274370e-02 1 3.343750e-03 1 8.178280e-03 1 1.975130e-01 1 8.121170e-02 1 1.277170e-01 1 1.847830e-01 1 9.424560e-02 1 2.829030e-02 1 2.178300e-01 1 5.443110e-02 1 2.379140e-02 1 4.748630e-03 1 6.979110e-02 1 2.654420e-01 1 2.966490e-01 1 5.786590e-02 1 1.062270e-01 1 1.549460e-01 1 6.570580e-02 1 7.866140e-02 1 2.027650e-01 1 9.191330e-02 1 2.026000e-01 1 2.250000e-02 1 8.814270e-02 1 1.609530e-01 1 2.355040e-01 1 8.554740e-02 1 1.032230e-01 1 9.102540e-02 1 1.403940e-03 1 6.821810e-02 1 1.169070e-04 1 2.070560e-01 1 7.038340e-02 1 3.249220e-02 1 1.218090e-01 1 4.518240e-03 1 3.909870e-01 1 1.052820e-01 1 1.689480e-02 1 5.662690e-02 1 1.047950e-01 1 5.171310e-02 1 1.872720e-01 1 3.096750e-01 1 4.468080e-02 1 5.485500e-02 1 1.995440e-01 1 6.420080e-02 1 2.905300e-02 1 6.439000e-02 1 2.409930e-02 1 1.361130e-01 1 2.287920e-01 1 9.049730e-02 1 1.264550e-01 1 1.068100e-01 1 2.758850e-01 1 2.376600e-01 1 6.898490e-02 1 1.022550e-01 1 5.353130e-02 1 9.243530e-02 1 1.218540e-02 1 4.056970e-03 1 2.697440e-01 1 7.601190e-02 1 6.106300e-03 1 4.709080e-02 1 9.227750e-02 1 5.405530e-02 1 1.938800e-01 1 1.811500e-04 1 3.788120e-01 1 2.836470e-01 1 2.783550e-01 1 2.490600e-03 1 1.061020e-01 1 2.586770e-01 1 9.508920e-02 1 4.177220e-03 1 9.396970e-03 1 1.880900e-01 1 1.891580e-01 1 8.880030e-02 1 1.747030e-01 1 2.179300e-02 1 1.462350e-01 1 1.741450e-01 1 1.589610e-04 1 9.738590e-02 1 8.616650e-02 1 2.599200e-01 1 1.510400e-01 1 1.655030e-01 1 1.649310e-01 1 1.083560e-01 1 2.706480e-01 1 9.658470e-02 1 2.490170e-01 1 1.420140e-01 1 4.672510e-03 1 2.196610e-01 1 6.839780e-02 1 1.390280e-01 1 2.648440e-01 1 1.104820e-02 1 5.827940e-02 1 1.506720e-01 1 1.131110e-01 1 7.430180e-02 1 1.498190e-02 1 1.948970e-01 1 2.519880e-01 1 1.266210e-01 1 1.911010e-01 1 8.106320e-05 1 1.325690e-01 1 4.486530e-02 1 1.118840e-01 1 5.639720e-03 1 8.374900e-02 1 1.141620e-01 1 2.871310e-01 1 5.051180e-02 1 6.057420e-02 1 4.966950e-02 1 7.343020e-02 1 2.509200e-01 1 1.557200e-01 1 7.688290e-02 1 9.966220e-02 1 1.351640e-01 1 4.509440e-01 1 7.643540e-02 1 1.682960e-01 1 1.935750e-01 1 6.295150e-03 1 4.253030e-01 1 1.053900e-01 1 2.069630e-01 1 1.180890e-01 1 9.736370e-02 1 4.060440e-01 1 1.336470e-01 1 1.257460e-01 1 6.817930e-02 1 5.742630e-02 1 7.941630e-03 1 1.506940e-01 1 5.970650e-02 1 8.072610e-03 1 3.152860e-01 1 1.011300e-08 1 2.293360e-02 1 1.547700e-01 1 5.836530e-02 1 4.182000e-02 1 2.719630e-01 1 2.937440e-01 1 7.635870e-02 1 1.111750e-01 1 1.690070e-01 1 7.919280e-03 1 8.714980e-02 1 2.173060e-01 1 6.790300e-03 1 1.770350e-01 1 1.041640e-01 1 1.735160e-01 1 1.551470e-01 1 1.834700e-01 1 3.735420e-02 1 1.064040e-01 1 8.457150e-02 1 2.028620e-01 1 1.211210e-02 1 3.490810e-03 1 6.092420e-02 1 2.820170e-01 1 1.528100e-01 1 1.422880e-01 1 8.858320e-02 1 7.263200e-02 1 2.113080e-01 1 9.454210e-02 1 5.962300e-02 1 2.619310e-02 1 2.735570e-02 1 5.271520e-02 1 2.930700e-02 1 5.919180e-02 1 1.602050e-01 1 1.139460e-01 1 2.482010e-02 1 6.321390e-03 1 3.146080e-01 1 1.005540e-01 1 3.779340e-02 1 6.101650e-02 1 2.734280e-01 1 2.085640e-01 1 1.747650e-01 1 2.758710e-02 1 5.351500e-02 1 3.036120e-02 1 6.650550e-02 1 4.306240e-01 1 9.748700e-02 1 2.109750e-01 1 5.514170e-05 1 1.210520e-01 1 1.514060e-01 1 3.098530e-01 1 3.700800e-04 1 3.524600e-01 1 6.035860e-02 1 3.171960e-01 1 1.602740e-01 1 2.808020e-01 1 1.484960e-01 1 1.680860e-01 1 1.193770e-01 1 1.281280e-01 1 1.687470e-01 1 2.733920e-01 1 1.682040e-01 1 1.140420e-01 1 1.385230e-01 1 5.552720e-02 1 4.043690e-02 1 5.673310e-02 1 8.295320e-02 1 2.572070e-02 1 4.111820e-01 1 2.886500e-01 1 7.508900e-02 1 5.540810e-02 1 3.362200e-01 1 1.103680e-02 1 8.723030e-03 1 1.742010e-01 1 1.661510e-01 1 5.370150e-03 1 1.324300e-02 1 1.776690e-01 1 1.050330e-01 1 1.547110e-01 1 1.081240e-01 1 6.289920e-02 1 1.756520e-01 1 1.611840e-01 1 2.354160e-02 1 2.170790e-01 1 7.992320e-02 1 1.308790e-01 1 9.872700e-02 1 2.163100e-02 1 5.465860e-04 1 2.671530e-01 1 1.809250e-01 1 1.993960e-01 1 1.459710e-01 1 4.434840e-02 1 4.042910e-01 1 1.655850e-01 1 7.689910e-02 1 1.909580e-01 1 1.871580e-01 1 8.687270e-03 1 1.836350e-03 1 8.749860e-02 1 2.886840e-01 1 8.144890e-02 1 1.267580e-01 1 2.123430e-01 1 1.216070e-01 1 7.741960e-02 1 2.238500e-02 1 1.171220e-01 1 1.628550e-01 1 5.097100e-02 1 1.164420e-01 1 1.100540e-01 1 7.539490e-02 1 2.256100e-02 1 1.799180e-01 1 3.522500e-03 1 3.215890e-01 1 9.840100e-04 1 1.214880e-01 1 2.282980e-01 1 1.835960e-01 1 1.678530e-01 1 2.035780e-01 1 1.824860e-03 1 4.029060e-02 1 3.956290e-02 1 7.185400e-03 1 3.406570e-01 1 8.941660e-03 1 1.482630e-01 1 2.635810e-01 1 3.002920e-01 1 1.482150e-01 1 2.504450e-01 1 2.079910e-03 1 1.716730e-01 1 1.576770e-01 1 9.996310e-02 1 9.216360e-04 1 7.826750e-02 1 1.468920e-01 1 1.803980e-02 1 8.795910e-02 1 1.663640e-01 1 6.295910e-02 1 2.138390e-01 1 2.946830e-01 1 1.803350e-01 1 1.059460e-01 1 7.833100e-02 1 1.284830e-01 1 5.644850e-05 1 5.557720e-03 1 1.203450e-01 1 1.546520e-01 1 6.034300e-02 1 2.048820e-01 1 1.074050e-01 1 7.473390e-02 1 1.421220e-01 1 1.906590e-01 1 1.827480e-03 1 2.574470e-01 1 1.590880e-01 1 1.618850e-01 1 1.012280e-01 1 1.234500e-01 1 1.307260e-01 1 1.861680e-01 1 4.302750e-01 1 3.456460e-01 1 1.585950e-01 1 3.048360e-01 1 2.402450e-03 1 8.902170e-02 1 3.825350e-02 1 3.388840e-01 1 1.668620e-01 1 2.692870e-01 1 2.325440e-01 1 1.204810e-01 1 5.123350e-02 1 1.371740e-01 1 2.314280e-01 1 1.992870e-01 1 1.390990e-01 1 1.405160e-01 1 1.815800e-01 1 1.174020e-01 1 9.608450e-02 1 8.159720e-02 1 9.193390e-02 1 3.850750e-01 1 3.348530e-01 1 7.755210e-02 1 1.100370e-01 1 2.001510e-01 1 2.045440e-01 1 1.057030e-01 1 1.241270e-02 1 1.399940e-01 1 1.128460e-01 1 9.959010e-04 1 1.645550e-01 1 1.176080e-01 1 1.668150e-01 1 2.320060e-01 1 3.099780e-01 1 2.727060e-02 1 1.773180e-01 1 3.829900e-02 1 4.466780e-02 1 1.113770e-01 1 1.120320e-01 1 2.516340e-01 1 3.721150e-01 1 7.186960e-02 1 1.704970e-01 1 8.087000e-02 1 2.752250e-01 1 4.065500e-01 1 1.141820e-01 1 1.491750e-02 1 4.525240e-02 1 2.268000e-01 1 1.033600e-01 1 2.753110e-01 1 2.789660e-01 1 8.413390e-02 1 8.615250e-02 1 4.485180e-01 1 1.716810e-01 1 3.380690e-01 1 2.029070e-01 1 2.890850e-01 1 8.382870e-03 1 1.143680e-01 1 2.360750e-01 1 1.504870e-03 1 2.235220e-01 1 3.312680e-01 1 2.072730e-02 1 2.091300e-01 1 4.906350e-03 1 4.697610e-02 1 1.033380e-01 1 4.153740e-01 1 2.580490e-01 1 3.521500e-02 1 2.381200e-01 1 8.233680e-02 1 1.337380e-01 1 1.238270e-01 1 1.186510e-01 1 2.488600e-01 1 1.897820e-01 1 1.008440e-01 1 2.720660e-01 1 8.082220e-02 1 9.029120e-02 1 7.410000e-02 1 4.772740e-02 1 3.173650e-01 1 2.274020e-01 1 2.130690e-01 1 7.879940e-02 1 1.812790e-01 1 6.782250e-02 1 7.327730e-02 1 1.781070e-02 1 2.063330e-02 1 4.308200e-02 1 1.021870e-02 1 2.207310e-01 1 2.060530e-01 1 3.398350e-01 1 3.140910e-01 1 2.469660e-01 1 2.077530e-01 1 1.387090e-01 1 9.642280e-02 1 8.148200e-02 1 2.433490e-01 1 3.349470e-01 1 3.074650e-01 1 2.411520e-01 1 2.432230e-01 1 2.194610e-01 1 1.114720e-01 1 1.279690e-01 1 2.254820e-01 1 1.995540e-01 1 1.827820e-01 1 2.464880e-01 1 5.445480e-02 1 1.571820e-01 1 4.028150e-01 1 1.589360e-01 1 1.649060e-01 1 1.459380e-02 1 3.417300e-01 1 1.669520e-02 1 7.725400e-02 1 1.315440e-01 1 1.497060e-01 1 1.804610e-01 1 6.058350e-02 1 9.137190e-02 1 1.040140e-01 1 4.204120e-02 1 1.964760e-01 1 6.616260e-02 1 5.056580e-02 1 2.522380e-01 1 1.272850e-01 1 7.013980e-02 1 3.436660e-01 1 1.799750e-01 1 2.748880e-01 1 1.477170e-02 1 1.125170e-01 1 1.665110e-01 1 7.946440e-03 1 2.917540e-02 1 2.756450e-01 1 2.719160e-01 1 4.351300e-02 1 1.288300e-01 1 1.676540e-02 1 3.047590e-01 1 1.730920e-03 1 1.657910e-01 1 7.905090e-02 1 1.805620e-01 1 9.199210e-02 1 7.078320e-03 1 1.444310e-01 1 1.155320e-01 1 6.097300e-02 1 8.231820e-02 1 9.017990e-02 1 6.275450e-02 1 4.471820e-02 1 1.661920e-01 1 2.784070e-01 1 2.066940e-01 1 2.145560e-01 1 1.204070e-01 1 4.416900e-03 1 1.288990e-01 1 3.670770e-02 1 1.983610e-01 1 1.737450e-01 1 1.563390e-01 1 4.956190e-02 1 7.397480e-03 1 2.184510e-01 1 3.112770e-02 1 5.565460e-02 1 2.595510e-01 1 2.420340e-01 1 1.363490e-03 1 2.631340e-01 1 6.897890e-02 1 1.213750e-01 1 3.813300e-01 1 8.067110e-02 1 5.133470e-02 1 7.364350e-02 1 3.304010e-01 1 5.604740e-03 1 8.976330e-02 1 9.084350e-03 1 3.471260e-02 1 6.306380e-02 1 1.927110e-02 1 4.629670e-05 1 4.503550e-04 1 1.114960e-01 1 9.996480e-02 1 2.902190e-03 1 3.134460e-03 1 8.730390e-03 1 3.095350e-01 1 1.979130e-01 1 2.759350e-01 1 7.618650e-02 1 1.012860e-01 1 3.418190e-02 1 1.240300e-01 1 1.343160e-01 1 2.792940e-02 1 2.508370e-01 1 2.540500e-01 1 4.140020e-01 1 2.321170e-01 1 4.420160e-01 1 1.229780e-01 1 2.735950e-01 1 7.663670e-02 1 1.153490e-01 1 3.511040e-01 1 1.018340e-01 1 1.096780e-01 1 2.814290e-01 1 4.676780e-01 1 2.493940e-01 1 1.437660e-02 1 1.312950e-01 1 6.227520e-02 1 2.233250e-01 1 2.136420e-01 1 2.837950e-01 1 1.482000e-02 1 2.379610e-01 1 1.780330e-01 1 1.966550e-01 1 2.915860e-01 1 1.700060e-02 1 3.256230e-01 1 1.042930e-01 1 4.460250e-02 1 3.906780e-01 1 1.056380e-02 1 2.782700e-01 1 8.600270e-03 1 2.067490e-01 1 1.583950e-01 1 6.871750e-02 1 1.413300e-01 1 1.562960e-01 1 2.760950e-01 1 2.112640e-02 1 1.691340e-01 1 1.433660e-01 1 1.614420e-01 1 1.023110e-02 1 3.518760e-01 1 8.624060e-02 1 9.542940e-02 1 1.037960e-01 1 2.199040e-01 1 5.387110e-02 1 9.117310e-03 1 1.788840e-01 1 1.259140e-02 1 6.894640e-02 1 3.349610e-02 1 2.909710e-01 1 1.088090e-01 1 1.571950e-01 1 5.117730e-04 1 1.318460e-01 1 6.253600e-02 1 4.320930e-02 1 7.011670e-03 1 1.154690e-02 1 1.192430e-01 1 2.005500e-01 1 4.392210e-04 1 1.287050e-01 1 1.887690e-02 1 1.463360e-01 1 7.063460e-03 1 7.436270e-03 1 3.649970e-01 1 2.182520e-01 1 2.527810e-01 1 2.270600e-01 1 8.873900e-02 1 1.775310e-01 1 8.594620e-02 1 1.963070e-01 1 1.279310e-01 1 1.733640e-01 1 1.105680e-02 1 1.368520e-01 1 2.159670e-01 1 3.585630e-02 1 1.242810e-01 1 3.571750e-02 1 5.597940e-02 1 5.257670e-03 1 3.673890e-02 1 1.111590e-01 1 1.134340e-01 1 1.901420e-01 1 7.359580e-02 1 1.302680e-01 1 1.594410e-01 1 2.172820e-01 1 9.099800e-02 1 1.846570e-01 1 1.140270e-01 1 2.841210e-01 1 4.201190e-01 1 7.703670e-02 1 2.807220e-01 1 1.733660e-01 1 3.008330e-02 1 6.221480e-02 1 2.367510e-02 1 2.144740e-01 1 4.808880e-02 1 5.000910e-02 1 1.290860e-01 1 9.758170e-05 1 1.599350e-01 1 1.029920e-01 1 2.882300e-01 1 1.088070e-01 1 1.295580e-01 1 2.366610e-01 1 5.042900e-03 1 1.568910e-01 1 2.658350e-01 1 1.732240e-01 1 3.810980e-01 1 1.039120e-01 1 1.050310e-01 1 2.004070e-01 1 1.579290e-01 1 2.877470e-02 1 1.744970e-01 1 1.954050e-01 1 4.588540e-02 1 2.594800e-02 1 1.448930e-01 1 2.453900e-01 1 4.184830e-01 1 1.658780e-01 1 3.887160e-02 1 2.081720e-01 1 1.697440e-01 1 9.745560e-02 1 3.665780e-01 1 9.123390e-02 1 2.344580e-01 1 6.092930e-02 1 1.955580e-01 1 2.543530e-02 1 9.166440e-03 1 2.291450e-01 1 2.561980e-01 1 1.102680e-01 1 1.729510e-01 1 1.389220e-02 1 2.655820e-01 1 1.671730e-01 1 1.946830e-02 1 1.755830e-01 1 3.770770e-01 1 1.616550e-01 1 2.676430e-02 1 7.011350e-02 1 7.114810e-02 1 3.428060e-01 1 1.310660e-01 1 5.436150e-04 1 9.959630e-02 1 3.080570e-02 1 1.354600e-01 1 4.082910e-03 1 2.248170e-01 1 9.143410e-02 1 3.897210e-03 1 6.780610e-05 1 9.147360e-02 1 1.429930e-01 1 1.410990e-02 1 2.436290e-01 1 1.356970e-01 1 6.022640e-02 1 1.127530e-01 1 3.189120e-02 1 3.866450e-02 1 6.417840e-03 1 1.053070e-01 1 3.356160e-01 1 1.530050e-01 1 3.835220e-01 1 1.676140e-01 1 1.083500e-02 1 1.732520e-01 1 6.764350e-04 1 5.413540e-02 1 1.985890e-03 1 1.079010e-01 1 1.806780e-01 1 5.269460e-02 1 1.850440e-02 1 1.656380e-01 1 5.957620e-02 1 2.014780e-01 1 9.319080e-04 1 2.851850e-02 1 1.461470e-01 1 1.438360e-01 1 2.894240e-02 1 5.519200e-04 1 2.593410e-02 1 4.420330e-01 1 9.516790e-02 1 2.749440e-02 1 2.015660e-01 1 3.672310e-02 1 1.377440e-01 1 4.859010e-02 1 1.151230e-01 1 6.795810e-02 1 2.559170e-01 1 9.028640e-02 1 1.639460e-01 1 1.900270e-01 1 1.217790e-01 1 2.370670e-01 1 3.707260e-01 1 2.512080e-02 1 2.883110e-02 1 2.494780e-03 1 2.546930e-02 1 1.936210e-03 1 2.066200e-01 1 1.058340e-01 1 3.357740e-01 1 1.223560e-01 1 2.986220e-01 1 3.235110e-02 1 8.583820e-02 1 1.952180e-01 1 1.274380e-01 1 2.948270e-01 1 1.526620e-01 1 2.518760e-02 1 5.079180e-02 1 8.603810e-03 1 1.641330e-01 1 2.004110e-01 1 3.126320e-01 1 3.248900e-02 1 1.279980e-01 1 9.142940e-02 1 1.773030e-02 1 5.890170e-02 1 1.592000e-02 1 7.276270e-02 1 1.096350e-01 1 1.674620e-01 1 2.234360e-02 1 2.024440e-01 1 8.642490e-02 1 2.433670e-01 1 3.534610e-02 1 2.821020e-01 1 2.919560e-01 1 6.823470e-02 1 1.626550e-01 1 1.947420e-01 1 9.898490e-02 1 1.984510e-01 1 3.501400e-01 1 1.935390e-01 1 3.626380e-03 1 3.899590e-01 1 5.433560e-02 1 5.592510e-02 1 8.627200e-02 1 3.379040e-03 1 2.187830e-01 1 9.478520e-02 1 1.998650e-01 1 3.913120e-04 1 2.376120e-01 1 2.685000e-02 1 1.974860e-01 1 8.191510e-02 1 5.328100e-02 1 4.321580e-01 1 9.552380e-02 1 1.251210e-01 1 7.389960e-02 1 4.880140e-01 1 1.201840e-01 1 2.538090e-02 1 1.752200e-01 1 2.331800e-01 1 7.633530e-02 1 8.665940e-02 1 1.476550e-01 1 2.059670e-02 1 1.041090e-01 1 1.857030e-02 1 1.395190e-01 1 9.775640e-02 1 9.691140e-02 1 1.596210e-01 1 1.684910e-02 1 4.164780e-01 1 2.642210e-01 1 9.491840e-02 1 1.861360e-01 1 2.724850e-01 1 1.684450e-01 1 3.712820e-01 1 2.605620e-01 1 6.460800e-02 1 2.612330e-01 1 1.402580e-02 1 2.645220e-01 1 1.697360e-01 1 1.001360e-01 1 2.297990e-01 1 1.912180e-01 1 9.927840e-02 1 4.171940e-02 1 1.078840e-01 1 9.407470e-02 1 6.477120e-02 1 1.151380e-01 1 3.364390e-02 1 1.239620e-01 1 4.706910e-02 1 5.590170e-02 1 1.801940e-01 1 1.603290e-01 1 4.149700e-02 1 9.469770e-02 1 5.479010e-02 1 1.724460e-01 1 1.421850e-01 1 1.983580e-01 1 3.476460e-01 1 3.128230e-01 1 7.780510e-02 1 6.286670e-02 1 5.834420e-03 1 2.665960e-02 1 3.463120e-01 1 2.128640e-03 1 1.106070e-01 1 3.135500e-02 1 3.146730e-01 1 9.492420e-02 1 2.442000e-01 1 1.377090e-01 1 1.650630e-01 1 1.529990e-04 1 8.309100e-02 1 1.763430e-05 1 2.386250e-01 1 9.805710e-02 1 2.083020e-01 1 2.120170e-01 1 1.592260e-02 1 2.108390e-01 1 3.037000e-01 1 3.064070e-01 1 3.501880e-01 1 3.681370e-01 1 1.752570e-01 1 2.442200e-01 1 1.713390e-02 1 2.192560e-01 1 2.081540e-02 1 1.195500e-01 1 1.393390e-01 1 1.159160e-01 1 7.632520e-02 1 1.335340e-01 1 1.261010e-01 1 3.313660e-03 1 9.502070e-02 1 3.299910e-02 1 1.075110e-01 1 6.203420e-02 1 3.082610e-01 1 4.648160e-01 1 4.573870e-02 1 1.439200e-02 1 3.148860e-01 1 2.206170e-01 1 2.077790e-01 1 1.503200e-02 1 1.532100e-01 1 3.514950e-02 1 3.918020e-02 1 7.981430e-02 1 4.865850e-02 1 2.605880e-02 1 1.322640e-01 1 9.968780e-02 1 1.997760e-01 1 6.895490e-02 1 3.389860e-02 1 2.823010e-01 1 1.060030e-01 1 8.425300e-02 1 1.768380e-01 1 4.150230e-03 1 3.750870e-04 1 1.032590e-01 1 1.519960e-02 1 9.831330e-02 1 1.866440e-02 1 3.172350e-01 1 1.117900e-01 1 8.080770e-02 1 1.575230e-01 1 2.376990e-02 1 1.865370e-01 1 1.011940e-01 1 1.506050e-01 1 1.875910e-02 1 7.244410e-02 1 1.357670e-01 1 9.875150e-02 1 6.630120e-03 1 5.756510e-02 1 5.867490e-05 1 1.026840e-01 1 1.302520e-01 1 1.052080e-01 1 1.430990e-02 1 5.470530e-04 1 6.829440e-02 1 3.055280e-02 1 9.802930e-02 1 1.015650e-01 1 5.677530e-02 1 1.107230e-01 1 9.288840e-02 1 7.241590e-02 1 2.528560e-02 1 3.853650e-02 1 1.283520e-01 1 8.053730e-03 1 7.851640e-03 1 2.632860e-02 1 2.287640e-01 1 1.045390e-01 1 1.606690e-01 1 9.571800e-02 1 2.798020e-01 1 3.129580e-01 1 3.296180e-02 1 2.524820e-02 1 8.260600e-02 1 3.989730e-02 1 5.699350e-02 1 2.974020e-01 1 1.048310e-01 1 1.298300e-01 1 6.120650e-02 1 8.940250e-02 1 1.712220e-01 1 2.801940e-02 1 1.504720e-02 1 4.078290e-02 1 8.041920e-02 1 3.401060e-01 1 6.695660e-02 1 1.813360e-01 1 1.467890e-01 1 1.559350e-01 1 4.587550e-02 1 6.472890e-04 1 6.017780e-02 1 1.942070e-01 1 8.764770e-02 1 8.351330e-02 1 1.009880e-01 1 3.806230e-02 1 3.173680e-01 1 2.564330e-01 1 5.788340e-02 1 9.835380e-02 1 2.500140e-01 1 8.847440e-02 1 1.780880e-01 1 5.300820e-02 1 5.239590e-02 1 1.656550e-01 1 1.825380e-01 1 7.496160e-02 1 1.205300e-01 1 1.697580e-01 1 1.197450e-01 1 9.093800e-02 1 7.166530e-02 1 1.393460e-01 1 3.657470e-02 1 7.310140e-02 1 1.181810e-01 1 7.657020e-05 1 1.383310e-01 1 2.548840e-01 1 9.064400e-02 1 2.193230e-01 1 1.630090e-02 1 Name: p2_conf, dtype: int64
image_prediction.p2_dog.value_counts()
True 1553 False 522 Name: p2_dog, dtype: int64
image_prediction.p3.value_counts()
Labrador_retriever 79 Chihuahua 58 golden_retriever 48 Eskimo_dog 38 kelpie 35 kuvasz 34 chow 32 Staffordshire_bullterrier 32 beagle 31 cocker_spaniel 31 Pekinese 29 toy_poodle 29 Pomeranian 29 Chesapeake_Bay_retriever 27 Great_Pyrenees 27 Pembroke 27 malamute 26 French_bulldog 26 American_Staffordshire_terrier 24 pug 23 Cardigan 23 basenji 21 bull_mastiff 20 toy_terrier 20 Siberian_husky 19 Boston_bull 17 Shetland_sheepdog 17 doormat 16 Lakeland_terrier 16 boxer 16 dingo 15 standard_poodle 15 seat_belt 15 German_shepherd 15 Saluki 14 Tibetan_mastiff 14 Maltese_dog 14 collie 14 miniature_pinscher 14 miniature_poodle 13 West_Highland_white_terrier 13 Weimaraner 13 keeshond 12 teddy 12 bloodhound 12 Norfolk_terrier 12 Tibetan_terrier 12 soft-coated_wheaten_terrier 12 English_setter 12 Siamese_cat 12 Appenzeller 11 Brittany_spaniel 11 Norwegian_elkhound 11 Airedale 11 Irish_terrier 11 Italian_greyhound 11 papillon 11 Border_collie 11 vizsla 10 Welsh_springer_spaniel 10 white_wolf 10 Rottweiler 10 Rhodesian_ridgeback 10 Newfoundland 9 Great_Dane 9 curly-coated_retriever 9 Shih-Tzu 9 whippet 9 Saint_Bernard 8 Irish_setter 8 German_short-haired_pointer 8 borzoi 8 Australian_terrier 8 bathtub 7 English_springer 7 otterhound 7 Yorkshire_terrier 7 Samoyed 7 Doberman 7 Ibizan_hound 7 redbone 7 basset 7 clumber 7 Old_English_sheepdog 7 toilet_tissue 7 Brabancon_griffon 7 Lhasa 6 EntleBucher 6 muzzle 6 Border_terrier 6 cairn 6 English_foxhound 6 Norwich_terrier 6 bluetick 6 ice_bear 6 schipperke 6 Persian_cat 5 flat-coated_retriever 5 groenendael 5 Leonberg 5 Arctic_fox 5 hog 5 Greater_Swiss_Mountain_dog 5 water_buffalo 5 sandbar 5 giant_schnauzer 5 tennis_ball 5 dalmatian 5 black-footed_ferret 5 weasel 5 bath_towel 5 malinois 4 paper_towel 4 fountain 4 fur_coat 4 three-toed_sloth 4 black-and-tan_coonhound 4 sea_lion 4 Japanese_spaniel 4 ice_lolly 4 Mexican_hairless 4 Irish_water_spaniel 4 swing 4 wallaby 4 Gordon_setter 4 silky_terrier 4 television 4 miniature_schnauzer 4 quilt 4 Dandie_Dinmont 4 Afghan_hound 4 sombrero 4 sunglasses 3 wood_rabbit 3 bookcase 3 sundial 3 menu 3 scuba_diver 3 macaque 3 racket 3 purse 3 gibbon 3 hamster 3 Scottish_deerhound 3 wool 3 limousine 3 carton 3 tub 3 echidna 3 microwave 3 polecat 3 ski_mask 3 Arabian_camel 3 shower_curtain 3 bagel 3 umbrella 3 box_turtle 3 crane 3 guinea_pig 3 bubble 3 pillow 3 printer 3 koala 3 wire-haired_fox_terrier 3 prison 2 briard 2 bathing_cap 2 space_heater 2 swab 2 titi 2 dhole 2 mask 2 mouse 2 llama 2 bolete 2 Blenheim_spaniel 2 warthog 2 sliding_door 2 wig 2 squirrel_monkey 2 convertible 2 refrigerator 2 pizza 2 ashcan 2 king_penguin 2 komondor 2 abaya 2 car_wheel 2 file 2 terrapin 2 feather_boa 2 Sealyham_terrier 2 bison 2 shopping_cart 2 toilet_seat 2 shopping_basket 2 ram 2 jigsaw_puzzle 2 Bouvier_des_Flandres 2 French_loaf 2 coyote 2 poncho 2 mousetrap 2 paddlewheel 2 Walker_hound 2 lakeside 2 Irish_wolfhound 2 bassinet 2 beacon 2 snow_leopard 2 beaver 2 book_jacket 2 washbasin 2 cougar 2 Angora 2 agama 2 hen 2 lumbermill 2 brass 2 Christmas_stocking 2 Egyptian_cat 2 bucket 2 leafhopper 2 envelope 2 wreck 2 giant_panda 2 Bernese_mountain_dog 2 common_iguana 2 badger 2 minibus 2 hippopotamus 2 bell_cote 1 window_screen 1 assault_rifle 1 goldfish 1 chickadee 1 chime 1 power_drill 1 spatula 1 pop_bottle 1 paintbrush 1 European_fire_salamander 1 loupe 1 cowboy_boot 1 wok 1 triceratops 1 greenhouse 1 mountain_tent 1 nipple 1 pier 1 consomme 1 ibex 1 partridge 1 affenpinscher 1 meerkat 1 barbell 1 pretzel 1 wild_boar 1 grand_piano 1 mitten 1 green_lizard 1 oscilloscope 1 screen 1 bib 1 Band_Aid 1 grey_fox 1 swimming_trunks 1 gar 1 snail 1 maze 1 joystick 1 chimpanzee 1 loggerhead 1 black_swan 1 croquet_ball 1 boathouse 1 balance_beam 1 cheetah 1 broccoli 1 parachute 1 French_horn 1 chest 1 seashore 1 soccer_ball 1 tiger_cat 1 axolotl 1 pot 1 wombat 1 can_opener 1 go-kart 1 theater_curtain 1 mongoose 1 pool_table 1 valley 1 sunglass 1 lampshade 1 zebra 1 conch 1 maraca 1 red_wolf 1 ballplayer 1 jeep 1 lion 1 park_bench 1 African_chameleon 1 hammerhead 1 mushroom 1 notebook 1 bow_tie 1 beach_wagon 1 desktop_computer 1 quill 1 mosquito_net 1 nail 1 gorilla 1 jaguar 1 prairie_chicken 1 wallet 1 moped 1 whiptail 1 switch 1 bulletproof_vest 1 canoe 1 bullfrog 1 rhinoceros_beetle 1 pajama 1 kimono 1 shovel 1 parallel_bars 1 sea_cucumber 1 acorn 1 barrow 1 entertainment_center 1 grocery_store 1 toyshop 1 panpipe 1 electric_fan 1 standard_schnauzer 1 brown_bear 1 binder 1 buckeye 1 ox 1 bow 1 steam_locomotive 1 wolf_spider 1 guillotine 1 hand_blower 1 plastic_bag 1 plunger 1 restaurant 1 hand-held_computer 1 soap_dispenser 1 space_shuttle 1 snorkel 1 rotisserie 1 vacuum 1 oxcart 1 Indian_elephant 1 wing 1 cab 1 pickup 1 tripod 1 great_grey_owl 1 cloak 1 rain_barrel 1 chain 1 banana 1 coral_reef 1 rifle 1 hatchet 1 crayfish 1 cliff 1 shower_cap 1 mink 1 bannister 1 stinkhorn 1 African_grey 1 coffeepot 1 cuirass 1 American_black_bear 1 rapeseed 1 goose 1 jersey 1 passenger_car 1 viaduct 1 bonnet 1 cardoon 1 Windsor_tie 1 marmot 1 cup 1 neck_brace 1 traffic_light 1 crossword_puzzle 1 Sussex_spaniel 1 screw 1 dugong 1 hare 1 orangutan 1 otter 1 common_newt 1 Kerry_blue_terrier 1 padlock 1 golfcart 1 eel 1 shoji 1 rock_crab 1 barber_chair 1 drumstick 1 Name: p3, dtype: int64
image_prediction.p3_conf.value_counts()
9.475920e-02 2 3.571110e-02 2 4.279890e-04 2 4.465960e-02 2 1.620840e-01 2 7.712990e-02 2 1.168060e-01 2 1.464270e-01 2 3.956260e-03 2 3.901170e-02 2 1.371860e-01 2 1.096770e-01 2 9.643550e-02 2 1.570280e-01 2 1.575240e-01 2 1.181990e-01 2 1.649670e-02 2 1.008420e-01 2 1.510240e-01 2 5.409690e-03 2 2.636430e-02 2 1.867890e-01 2 2.232630e-01 2 8.735480e-02 2 1.215230e-01 2 4.147580e-02 2 7.143620e-02 2 4.640320e-02 2 1.485760e-02 2 3.329570e-03 2 3.094330e-02 2 2.297730e-02 2 1.193350e-02 2 8.446570e-02 2 1.749190e-02 2 7.498620e-03 2 1.105920e-01 2 7.651370e-03 2 1.818890e-02 2 1.216260e-01 2 7.849540e-03 2 4.857190e-02 2 5.605670e-02 2 4.770370e-02 2 1.853050e-03 2 8.254920e-02 2 8.554420e-03 2 4.752270e-02 2 1.025950e-01 2 7.164760e-02 2 1.014200e-01 2 7.700810e-02 2 1.049550e-03 2 1.175020e-01 2 3.891480e-02 2 8.251460e-02 2 2.335350e-02 2 4.610820e-02 2 5.052760e-02 2 3.625070e-02 2 4.133140e-02 2 1.571300e-01 2 5.336450e-02 2 3.890220e-02 2 9.174140e-04 2 1.596500e-02 2 7.745560e-02 2 1.109210e-01 2 7.853050e-02 2 4.803860e-02 1 1.071020e-01 1 4.057550e-02 1 6.935680e-02 1 1.061530e-02 1 8.962460e-02 1 9.699530e-02 1 7.173170e-02 1 1.477450e-01 1 4.169190e-02 1 1.632570e-01 1 5.063510e-02 1 3.971110e-03 1 1.630330e-01 1 1.242290e-03 1 5.040000e-02 1 1.535980e-01 1 1.309480e-02 1 1.934140e-01 1 6.389890e-02 1 9.700010e-02 1 1.676180e-01 1 6.820300e-03 1 8.080190e-02 1 1.050740e-01 1 9.298250e-03 1 4.632640e-02 1 1.482340e-03 1 8.252970e-02 1 4.542610e-02 1 6.953380e-02 1 1.702750e-02 1 1.274690e-01 1 5.264710e-02 1 3.889020e-03 1 1.484820e-01 1 1.197200e-01 1 2.807530e-02 1 6.569400e-02 1 1.012530e-01 1 2.975220e-03 1 1.093450e-01 1 3.631570e-02 1 5.943480e-03 1 3.226440e-03 1 5.332190e-05 1 1.259820e-01 1 4.497580e-02 1 1.270170e-01 1 4.555400e-02 1 9.739670e-02 1 1.315750e-03 1 9.332920e-03 1 9.219820e-02 1 1.682640e-02 1 1.093090e-03 1 3.386190e-03 1 1.297300e-01 1 1.206060e-02 1 5.441970e-03 1 1.283570e-04 1 1.553510e-02 1 8.882100e-03 1 3.612170e-02 1 5.295530e-02 1 1.732290e-01 1 1.286220e-01 1 1.711060e-01 1 1.977400e-03 1 6.212430e-02 1 7.690220e-02 1 4.618370e-02 1 3.606670e-03 1 9.481810e-02 1 2.911580e-04 1 1.174640e-01 1 1.285200e-02 1 7.604290e-02 1 2.587430e-02 1 8.314510e-05 1 1.814160e-02 1 2.093930e-01 1 6.581340e-02 1 1.139030e-01 1 9.073880e-02 1 4.934910e-02 1 1.637720e-02 1 5.999520e-02 1 3.121790e-02 1 1.320680e-04 1 4.572840e-03 1 1.277260e-01 1 9.434850e-03 1 6.370310e-02 1 1.412240e-01 1 7.096110e-03 1 4.885570e-02 1 2.901290e-03 1 6.276500e-03 1 4.752990e-03 1 1.052790e-02 1 7.273510e-02 1 1.710750e-02 1 1.845610e-04 1 2.973110e-04 1 1.347830e-01 1 2.800360e-02 1 4.932580e-02 1 7.112150e-02 1 4.842470e-02 1 1.566870e-01 1 2.225070e-02 1 1.355540e-02 1 3.112610e-04 1 5.072790e-02 1 8.914870e-02 1 3.777330e-02 1 6.679080e-03 1 7.196040e-02 1 4.526270e-02 1 7.148510e-02 1 4.080890e-02 1 8.417350e-02 1 4.822590e-02 1 1.855010e-02 1 1.101830e-01 1 5.735010e-05 1 4.981050e-02 1 6.063720e-03 1 2.468370e-04 1 2.780610e-02 1 9.489540e-03 1 1.429950e-01 1 8.702230e-02 1 1.794310e-02 1 6.955580e-02 1 2.685430e-02 1 4.775940e-02 1 1.080470e-01 1 2.474000e-02 1 3.816010e-02 1 8.018850e-02 1 1.775980e-04 1 5.803360e-02 1 4.062540e-02 1 1.026540e-01 1 6.979710e-02 1 2.605040e-03 1 4.233930e-02 1 1.844220e-02 1 8.014850e-02 1 9.447400e-02 1 6.286620e-02 1 2.036100e-04 1 1.016810e-01 1 3.505470e-03 1 8.189980e-02 1 1.387630e-02 1 6.142850e-02 1 8.048360e-02 1 4.909330e-02 1 2.841060e-02 1 6.746050e-02 1 2.331620e-01 1 1.261260e-02 1 1.703090e-02 1 1.041520e-01 1 1.111520e-01 1 1.336490e-01 1 1.229630e-03 1 1.117850e-02 1 5.519370e-02 1 5.331720e-02 1 9.469160e-02 1 6.239150e-03 1 4.094880e-02 1 2.712960e-03 1 4.804820e-02 1 2.172210e-02 1 8.679210e-03 1 6.333290e-02 1 7.800000e-02 1 1.400680e-01 1 1.899450e-01 1 9.081890e-02 1 1.668790e-02 1 8.407560e-02 1 1.594270e-02 1 6.895690e-02 1 1.022710e-02 1 1.234850e-01 1 3.200810e-02 1 3.855870e-02 1 2.641330e-03 1 4.589570e-02 1 4.550710e-02 1 2.885260e-02 1 8.768570e-03 1 4.124780e-02 1 1.246780e-02 1 1.119190e-01 1 4.191600e-02 1 2.419330e-02 1 1.026430e-01 1 3.486810e-02 1 1.414610e-01 1 1.422540e-01 1 1.345060e-01 1 4.468110e-02 1 9.630840e-03 1 2.841260e-02 1 3.251050e-02 1 3.750410e-02 1 1.134330e-01 1 1.200510e-01 1 8.145870e-03 1 1.610520e-02 1 9.124110e-02 1 9.876690e-02 1 8.120240e-03 1 4.420790e-02 1 3.720830e-02 1 9.984340e-02 1 3.061490e-03 1 1.194900e-01 1 1.342690e-01 1 3.903620e-02 1 7.957750e-03 1 2.160900e-07 1 1.149700e-01 1 2.637560e-02 1 1.542930e-01 1 1.904070e-01 1 9.150480e-02 1 3.971480e-03 1 4.331180e-02 1 1.791580e-02 1 3.175550e-02 1 9.609970e-02 1 7.887900e-02 1 2.543780e-02 1 3.553660e-02 1 4.899880e-02 1 2.226350e-03 1 1.640380e-02 1 6.673610e-04 1 2.814790e-02 1 2.240520e-02 1 9.662390e-02 1 1.274320e-01 1 9.796270e-02 1 1.345520e-02 1 8.531690e-02 1 1.289610e-02 1 3.599800e-04 1 5.821410e-03 1 2.021110e-02 1 8.146440e-02 1 4.385980e-03 1 7.358600e-05 1 4.882060e-02 1 8.032330e-02 1 4.766170e-02 1 1.124950e-01 1 6.302030e-02 1 1.588320e-02 1 7.171250e-02 1 3.811880e-03 1 1.043140e-01 1 6.734540e-02 1 7.537100e-02 1 3.372570e-02 1 2.503730e-02 1 5.748070e-02 1 1.546070e-02 1 3.217790e-02 1 6.107820e-02 1 4.953060e-02 1 5.682650e-03 1 1.617290e-03 1 1.659140e-01 1 8.416440e-02 1 3.975850e-02 1 9.640930e-02 1 7.212860e-02 1 1.035960e-01 1 4.995620e-03 1 4.866580e-02 1 7.229490e-02 1 1.791070e-01 1 6.981080e-02 1 1.446580e-01 1 1.739610e-03 1 8.276490e-02 1 1.432450e-01 1 3.512710e-02 1 5.893370e-02 1 1.940860e-01 1 5.356960e-02 1 6.700040e-02 1 7.380570e-02 1 1.059180e-01 1 1.155410e-01 1 2.307390e-03 1 3.811000e-02 1 7.247930e-02 1 4.771520e-02 1 1.689890e-01 1 1.144980e-01 1 2.768060e-05 1 8.291730e-02 1 5.341200e-02 1 8.072300e-03 1 1.369460e-01 1 1.193050e-03 1 3.262130e-02 1 7.269860e-02 1 4.435080e-02 1 1.058560e-01 1 4.022690e-02 1 6.650780e-02 1 4.991380e-02 1 1.710990e-02 1 2.335260e-05 1 3.441780e-02 1 4.627680e-02 1 5.922730e-02 1 1.192470e-01 1 3.563810e-02 1 8.666070e-04 1 3.814820e-02 1 9.500090e-02 1 5.217500e-02 1 2.896170e-02 1 2.976900e-02 1 3.500700e-02 1 4.576810e-03 1 7.655880e-02 1 3.046190e-05 1 2.675790e-04 1 1.196630e-01 1 8.472760e-03 1 9.789310e-02 1 2.156690e-03 1 1.169310e-01 1 7.958960e-03 1 4.881320e-02 1 4.874360e-03 1 1.804010e-01 1 6.462870e-02 1 5.490510e-02 1 3.607190e-02 1 8.228940e-03 1 7.659340e-04 1 1.967590e-02 1 5.983750e-02 1 6.558230e-02 1 4.214100e-02 1 5.609410e-02 1 1.885510e-02 1 1.174800e-01 1 1.320150e-01 1 1.326300e-02 1 3.459550e-02 1 1.892880e-01 1 3.277700e-03 1 1.264820e-01 1 1.146060e-01 1 2.152930e-04 1 1.719950e-02 1 5.759760e-02 1 1.562340e-01 1 1.861080e-02 1 5.442810e-03 1 8.318430e-02 1 1.084920e-02 1 8.141190e-02 1 1.643370e-01 1 1.785200e-01 1 1.496050e-01 1 2.040840e-02 1 3.270930e-02 1 6.239820e-02 1 5.399260e-02 1 6.757230e-03 1 2.930440e-02 1 7.912180e-03 1 2.710420e-01 1 1.494700e-01 1 9.089940e-02 1 1.130250e-03 1 4.595910e-02 1 1.935480e-01 1 7.646340e-02 1 4.880960e-02 1 2.143980e-02 1 5.826140e-02 1 6.050830e-03 1 9.735660e-03 1 7.267610e-02 1 1.340800e-01 1 1.060730e-01 1 8.094780e-02 1 4.917630e-02 1 9.485020e-03 1 5.452340e-02 1 4.948690e-02 1 1.214930e-01 1 2.877850e-05 1 1.327460e-01 1 1.732010e-02 1 1.574020e-01 1 3.300570e-02 1 7.376370e-02 1 5.889360e-02 1 1.301890e-01 1 1.487850e-01 1 1.031110e-01 1 5.592650e-02 1 2.335880e-02 1 8.625230e-02 1 1.463510e-01 1 1.558280e-01 1 9.598090e-02 1 1.012940e-01 1 1.091290e-01 1 4.435650e-02 1 5.500720e-03 1 6.289270e-02 1 2.352850e-03 1 1.769160e-01 1 1.928260e-03 1 1.707250e-01 1 9.412690e-02 1 5.576970e-02 1 5.368220e-02 1 1.417360e-04 1 1.222540e-02 1 2.330250e-02 1 9.367890e-02 1 5.771780e-03 1 4.139800e-02 1 6.091100e-05 1 1.175630e-01 1 2.672980e-02 1 5.863100e-02 1 3.322210e-03 1 1.108480e-01 1 1.290050e-01 1 9.521820e-02 1 8.467220e-02 1 3.896910e-03 1 7.692230e-02 1 1.209920e-01 1 2.412280e-02 1 5.931190e-02 1 6.302060e-03 1 1.330170e-01 1 1.919710e-02 1 1.513440e-02 1 1.197320e-02 1 3.377620e-02 1 1.351760e-01 1 5.887300e-03 1 5.566070e-02 1 4.358420e-02 1 8.418530e-03 1 1.724780e-03 1 1.928540e-02 1 5.619990e-02 1 9.461660e-03 1 6.203270e-02 1 1.201160e-02 1 6.943610e-02 1 4.766400e-02 1 8.134690e-02 1 5.343310e-02 1 3.890560e-02 1 6.397830e-03 1 1.054750e-01 1 7.947970e-02 1 5.394040e-03 1 9.759950e-02 1 8.833400e-02 1 4.450690e-03 1 6.067820e-02 1 8.273510e-02 1 1.259400e-01 1 5.498140e-02 1 1.434470e-06 1 3.053230e-03 1 6.445570e-02 1 1.160320e-02 1 1.129520e-01 1 1.494970e-01 1 7.972940e-02 1 9.993270e-02 1 8.456280e-02 1 5.672610e-02 1 6.786800e-02 1 1.049390e-01 1 1.266710e-02 1 7.940580e-02 1 3.038600e-02 1 1.260730e-01 1 1.864350e-02 1 9.038550e-02 1 7.481950e-02 1 8.915270e-02 1 2.164680e-06 1 8.895870e-02 1 9.968910e-02 1 2.128030e-02 1 9.839810e-03 1 3.333660e-03 1 5.601810e-02 1 4.923690e-02 1 8.208610e-02 1 8.173790e-05 1 3.837380e-02 1 3.521960e-02 1 5.577850e-02 1 6.414470e-02 1 1.049300e-02 1 1.403890e-02 1 1.481150e-01 1 1.728380e-01 1 2.476190e-01 1 2.072530e-02 1 4.208940e-02 1 7.201430e-02 1 5.958190e-02 1 1.250170e-01 1 7.987100e-02 1 1.074730e-01 1 2.715260e-02 1 4.746980e-02 1 6.636050e-02 1 6.939620e-02 1 6.390700e-02 1 6.573770e-02 1 7.087840e-02 1 4.663810e-02 1 6.149130e-02 1 1.386720e-01 1 5.177400e-02 1 3.419520e-02 1 3.932710e-02 1 2.834720e-04 1 9.064410e-02 1 3.246260e-02 1 2.989400e-04 1 8.649880e-02 1 5.820510e-03 1 2.770250e-03 1 1.279750e-01 1 4.914760e-02 1 2.111250e-02 1 8.484020e-02 1 8.041830e-02 1 6.086480e-02 1 4.633230e-03 1 8.679250e-02 1 6.832090e-02 1 1.003710e-01 1 2.058690e-04 1 3.991220e-02 1 6.820100e-02 1 1.499680e-02 1 3.430630e-02 1 8.179980e-02 1 3.797580e-02 1 7.535770e-02 1 4.362710e-02 1 1.218390e-01 1 1.607530e-01 1 1.209030e-01 1 8.714240e-02 1 4.017750e-02 1 6.745510e-02 1 7.055420e-02 1 1.782270e-01 1 6.523620e-02 1 7.940620e-02 1 2.003880e-01 1 2.988880e-03 1 1.730750e-03 1 4.774500e-02 1 2.112460e-04 1 4.947150e-02 1 1.423000e-01 1 9.887390e-02 1 6.157010e-03 1 1.166570e-01 1 3.749420e-02 1 7.039220e-03 1 2.735070e-02 1 1.735700e-02 1 6.760720e-02 1 1.508440e-01 1 2.659630e-02 1 1.948400e-02 1 3.266910e-03 1 1.605590e-02 1 8.812240e-02 1 4.134170e-02 1 6.453380e-02 1 5.128010e-02 1 1.468040e-02 1 1.272200e-01 1 2.119010e-02 1 2.320630e-02 1 8.215670e-02 1 1.123970e-01 1 3.676340e-02 1 2.040750e-02 1 1.040290e-01 1 7.352490e-02 1 9.466370e-02 1 1.515530e-02 1 8.297490e-03 1 1.194170e-02 1 5.275800e-02 1 3.953330e-02 1 8.671650e-02 1 1.825200e-01 1 1.130100e-01 1 3.926210e-03 1 9.479810e-02 1 1.389150e-01 1 9.439660e-02 1 2.567870e-02 1 4.639700e-02 1 1.067080e-01 1 3.912510e-02 1 3.835090e-02 1 5.258030e-02 1 9.557110e-03 1 4.544830e-02 1 3.566710e-02 1 8.223200e-02 1 9.893880e-02 1 3.408970e-02 1 8.702250e-02 1 1.522800e-02 1 1.882720e-02 1 9.105510e-02 1 2.324720e-02 1 8.552360e-03 1 1.351990e-01 1 2.845420e-02 1 1.354440e-02 1 5.689130e-03 1 6.434580e-02 1 1.472350e-01 1 1.417360e-01 1 5.880240e-02 1 7.341440e-02 1 8.833830e-03 1 3.632020e-02 1 5.791620e-02 1 1.803970e-03 1 7.931920e-03 1 6.912620e-02 1 1.777020e-01 1 8.685470e-02 1 1.112500e-01 1 6.892340e-03 1 3.994100e-02 1 3.483250e-02 1 7.283230e-02 1 4.552540e-02 1 8.425150e-02 1 7.467320e-02 1 7.966190e-02 1 3.961870e-02 1 8.448230e-02 1 9.493270e-02 1 7.747500e-02 1 8.003560e-03 1 8.695060e-02 1 7.785210e-02 1 2.012580e-02 1 1.335340e-01 1 4.507120e-02 1 8.624110e-02 1 8.832830e-07 1 5.248230e-04 1 4.096800e-02 1 8.766240e-02 1 4.634920e-02 1 6.532100e-02 1 9.006660e-02 1 2.725160e-02 1 1.746090e-03 1 7.209880e-02 1 1.235360e-01 1 9.272700e-02 1 3.137890e-02 1 1.267630e-02 1 5.964390e-02 1 7.280630e-02 1 2.672030e-02 1 4.857310e-03 1 9.747050e-02 1 8.199060e-02 1 6.088370e-02 1 7.750030e-02 1 6.086770e-02 1 1.365450e-01 1 1.645620e-02 1 1.651810e-03 1 1.424090e-02 1 8.892530e-02 1 5.766080e-03 1 4.975840e-03 1 6.862470e-02 1 4.417270e-02 1 5.746150e-02 1 5.855270e-02 1 6.203040e-02 1 1.174770e-04 1 4.606040e-03 1 2.795070e-03 1 3.440170e-02 1 1.329320e-01 1 7.489320e-04 1 8.786010e-03 1 8.704720e-02 1 9.052750e-02 1 2.137800e-02 1 9.543400e-02 1 3.971490e-03 1 1.489660e-02 1 1.115650e-01 1 2.077590e-02 1 6.732550e-02 1 2.531090e-04 1 4.616630e-04 1 2.874170e-03 1 1.146430e-01 1 5.904340e-03 1 2.622640e-04 1 7.739560e-02 1 4.159780e-02 1 6.155740e-02 1 1.821310e-03 1 1.805950e-03 1 7.475390e-02 1 5.356890e-02 1 3.604890e-03 1 1.022990e-01 1 2.482090e-02 1 8.774140e-02 1 7.092620e-02 1 2.301920e-03 1 6.940630e-03 1 5.325660e-02 1 2.127450e-02 1 3.810990e-02 1 7.354470e-02 1 7.393450e-02 1 1.483750e-02 1 1.041930e-01 1 5.094240e-02 1 3.499510e-02 1 3.922150e-02 1 2.225500e-02 1 7.979950e-02 1 7.347290e-02 1 3.450390e-02 1 6.060880e-06 1 1.915680e-04 1 2.241220e-02 1 7.393590e-02 1 1.054420e-01 1 1.318880e-02 1 3.019130e-03 1 1.110150e-01 1 2.514390e-02 1 6.246540e-02 1 6.581760e-02 1 2.924820e-02 1 8.627650e-02 1 1.740040e-02 1 4.324510e-03 1 2.029340e-02 1 2.848920e-03 1 3.961830e-02 1 1.234030e-03 1 8.167480e-03 1 1.015180e-01 1 9.286140e-02 1 9.463860e-02 1 2.649790e-02 1 1.534340e-02 1 6.727830e-02 1 3.695290e-02 1 6.206470e-03 1 2.920330e-02 1 1.178060e-01 1 2.041190e-02 1 7.138830e-03 1 8.508580e-02 1 3.887820e-02 1 3.530600e-02 1 1.571400e-04 1 1.321350e-01 1 1.315140e-02 1 8.525870e-03 1 3.038680e-02 1 6.264980e-02 1 4.332460e-02 1 4.614740e-02 1 2.452520e-02 1 1.268840e-01 1 5.701760e-04 1 1.050110e-01 1 7.443470e-02 1 4.583720e-02 1 1.787950e-01 1 8.267760e-06 1 1.704520e-02 1 1.510710e-04 1 4.829800e-02 1 1.661830e-01 1 1.021610e-02 1 2.926480e-02 1 6.100530e-02 1 1.077980e-01 1 6.378590e-02 1 1.780540e-02 1 7.796610e-02 1 5.257170e-02 1 5.004130e-02 1 8.562630e-02 1 3.036740e-03 1 3.786960e-02 1 1.543680e-01 1 4.656170e-02 1 1.391690e-03 1 7.247470e-02 1 2.205180e-02 1 4.866550e-02 1 5.869010e-02 1 1.162990e-01 1 1.224510e-01 1 9.642100e-02 1 5.508610e-02 1 1.014300e-01 1 2.194770e-03 1 6.387970e-02 1 1.262820e-01 1 2.558060e-02 1 9.341240e-02 1 3.146970e-03 1 8.515340e-03 1 9.243210e-03 1 6.811150e-04 1 9.041510e-04 1 3.237010e-02 1 5.595040e-07 1 2.218970e-03 1 4.567320e-02 1 6.065270e-02 1 9.917430e-02 1 1.633660e-01 1 1.218400e-01 1 1.039450e-01 1 7.027060e-03 1 7.898340e-02 1 8.770690e-03 1 8.634630e-02 1 8.521090e-02 1 7.064670e-02 1 1.524340e-02 1 3.905140e-02 1 1.218870e-01 1 2.261560e-02 1 1.002020e-01 1 5.951670e-02 1 1.771790e-01 1 1.498180e-03 1 1.209390e-02 1 2.574340e-02 1 4.846400e-02 1 5.269360e-03 1 1.894300e-01 1 4.639250e-02 1 8.431710e-03 1 1.294100e-02 1 9.370820e-03 1 1.424000e-01 1 9.339230e-02 1 3.900860e-02 1 9.358200e-02 1 5.987510e-04 1 6.519110e-03 1 6.600340e-03 1 1.407030e-01 1 1.752190e-01 1 4.553110e-02 1 2.930350e-03 1 1.436300e-01 1 5.745670e-04 1 1.013540e-01 1 6.817320e-02 1 1.640950e-01 1 5.000780e-02 1 2.181090e-02 1 9.720380e-05 1 1.858950e-03 1 7.461670e-02 1 4.356490e-02 1 8.163610e-03 1 1.630240e-01 1 7.569610e-02 1 1.286670e-02 1 5.603740e-02 1 2.450030e-02 1 2.068270e-02 1 3.290590e-02 1 2.625800e-05 1 5.755940e-02 1 2.658510e-03 1 1.607390e-01 1 9.220550e-03 1 4.261790e-02 1 2.103230e-02 1 3.715910e-02 1 9.817080e-02 1 1.004290e-01 1 1.255470e-01 1 7.491390e-02 1 1.065520e-01 1 2.426930e-02 1 8.261020e-02 1 8.480770e-02 1 2.278190e-03 1 1.873150e-01 1 1.242890e-02 1 9.081530e-03 1 1.441470e-01 1 2.582320e-02 1 1.047330e-01 1 1.246840e-01 1 3.257360e-02 1 3.450970e-02 1 2.545630e-02 1 1.149020e-01 1 6.406080e-02 1 2.551820e-01 1 4.636710e-02 1 7.562780e-02 1 7.730080e-02 1 1.039530e-01 1 9.081600e-02 1 1.801530e-02 1 1.696550e-02 1 1.316470e-01 1 2.815280e-05 1 4.965610e-02 1 6.636840e-02 1 7.787900e-02 1 1.901230e-03 1 9.825580e-02 1 7.242660e-02 1 3.183920e-02 1 8.090120e-02 1 8.833800e-04 1 6.994640e-02 1 6.448460e-03 1 2.250050e-02 1 4.378550e-02 1 5.850470e-02 1 6.919860e-02 1 9.979070e-04 1 6.322450e-02 1 3.183490e-02 1 9.417430e-03 1 1.570810e-01 1 8.587100e-02 1 8.150940e-02 1 3.330580e-02 1 2.110540e-03 1 9.056790e-04 1 1.090990e-01 1 9.739340e-02 1 1.349520e-04 1 5.749830e-02 1 2.021000e-01 1 3.310350e-03 1 8.284820e-02 1 7.512480e-02 1 8.861940e-03 1 2.869360e-03 1 2.140330e-03 1 2.439450e-02 1 2.307470e-02 1 1.069130e-01 1 5.060180e-02 1 1.137960e-01 1 1.524320e-02 1 1.958490e-02 1 6.841460e-02 1 7.669010e-02 1 6.480700e-02 1 5.223740e-02 1 9.446490e-02 1 2.075630e-02 1 1.126010e-01 1 5.798030e-03 1 2.415180e-03 1 1.050160e-01 1 7.289040e-05 1 1.543520e-01 1 1.546290e-01 1 2.034950e-01 1 4.691620e-02 1 3.197510e-02 1 1.871370e-03 1 2.420540e-03 1 1.178200e-01 1 2.244770e-04 1 6.532750e-02 1 8.471350e-02 1 3.882760e-02 1 3.791070e-02 1 1.634110e-01 1 2.792950e-02 1 2.142030e-01 1 8.599280e-02 1 1.296430e-01 1 1.113110e-01 1 1.084040e-01 1 9.924100e-02 1 3.710310e-02 1 4.652400e-02 1 1.178720e-01 1 4.504640e-02 1 4.891980e-02 1 7.275120e-03 1 1.125890e-03 1 1.334360e-01 1 7.421720e-02 1 7.459730e-02 1 9.451960e-02 1 7.512670e-02 1 1.352440e-02 1 7.769250e-02 1 2.176170e-02 1 1.183840e-01 1 1.283830e-01 1 8.846650e-03 1 1.068060e-01 1 1.308170e-04 1 1.117670e-01 1 4.447290e-05 1 1.740170e-10 1 3.723880e-02 1 9.195670e-03 1 1.095440e-01 1 1.123690e-01 1 9.971260e-02 1 6.724230e-02 1 7.789910e-03 1 6.669490e-04 1 7.032290e-02 1 3.918660e-04 1 3.369050e-02 1 4.317820e-02 1 1.986610e-02 1 3.199420e-03 1 1.285070e-01 1 1.362600e-04 1 2.727090e-02 1 1.624560e-02 1 9.214390e-04 1 7.812490e-03 1 8.903260e-02 1 5.729980e-03 1 2.295620e-02 1 3.871990e-02 1 1.114110e-01 1 1.368140e-01 1 1.185900e-01 1 7.820550e-02 1 1.382600e-02 1 2.074550e-03 1 5.262500e-02 1 6.237540e-02 1 1.671560e-02 1 1.620220e-01 1 4.608630e-04 1 4.072190e-02 1 1.964750e-03 1 1.211710e-01 1 6.850990e-02 1 3.734850e-02 1 4.150610e-02 1 3.912650e-03 1 6.766540e-02 1 1.251520e-01 1 1.813030e-01 1 8.974280e-03 1 4.148420e-03 1 6.332530e-02 1 7.164950e-03 1 1.050720e-01 1 3.129090e-02 1 2.008090e-02 1 2.734190e-01 1 1.737900e-02 1 9.272520e-02 1 1.544210e-01 1 1.799800e-06 1 7.052380e-02 1 1.275640e-03 1 3.314580e-02 1 1.232710e-01 1 1.788530e-02 1 1.886680e-01 1 8.529690e-02 1 1.725680e-02 1 8.738540e-02 1 1.516980e-01 1 3.115820e-02 1 1.246870e-01 1 1.017020e-01 1 4.532240e-04 1 5.176030e-04 1 8.654040e-03 1 7.148650e-02 1 7.627600e-03 1 7.419380e-02 1 2.952190e-02 1 8.944880e-03 1 4.836810e-02 1 1.406190e-03 1 1.882660e-02 1 2.150760e-05 1 6.217890e-02 1 2.970470e-02 1 1.903320e-03 1 3.219410e-02 1 7.084900e-02 1 1.605220e-02 1 5.613670e-02 1 1.482360e-01 1 6.935280e-04 1 3.488800e-02 1 9.762550e-02 1 5.133350e-02 1 1.593830e-02 1 7.897470e-02 1 1.002700e-01 1 1.277250e-01 1 8.937270e-02 1 1.298020e-01 1 9.580520e-02 1 1.473640e-01 1 4.582990e-02 1 6.965200e-02 1 2.416150e-02 1 3.315830e-02 1 3.129160e-02 1 8.204040e-03 1 4.944380e-02 1 4.970020e-02 1 1.907610e-02 1 1.258150e-01 1 2.252510e-02 1 1.269280e-02 1 1.181840e-01 1 4.918190e-02 1 1.363660e-01 1 1.967890e-01 1 4.101780e-02 1 1.202170e-02 1 1.087090e-01 1 6.521800e-04 1 3.348780e-02 1 7.331650e-02 1 2.358320e-03 1 1.056640e-01 1 3.331800e-02 1 5.984540e-02 1 5.786130e-03 1 6.915900e-05 1 7.948940e-02 1 8.968830e-02 1 3.739960e-02 1 2.090330e-02 1 9.663400e-04 1 5.990750e-02 1 7.008380e-03 1 7.359270e-03 1 1.197150e-03 1 1.327000e-01 1 3.788120e-02 1 4.679190e-04 1 2.882710e-03 1 3.172850e-02 1 1.317060e-01 1 6.017290e-02 1 6.241430e-02 1 1.800230e-01 1 1.503120e-01 1 2.123810e-01 1 3.629390e-02 1 2.321430e-03 1 1.549140e-01 1 7.698190e-03 1 2.394360e-02 1 6.029640e-02 1 2.847350e-02 1 6.509450e-02 1 7.309650e-02 1 4.438090e-02 1 2.698290e-02 1 6.667170e-02 1 1.226010e-02 1 4.059910e-02 1 6.178260e-02 1 7.011950e-02 1 1.189250e-03 1 9.442940e-02 1 1.168640e-01 1 9.480590e-03 1 4.921790e-02 1 1.455780e-01 1 4.118430e-05 1 3.225290e-02 1 1.193420e-02 1 1.441950e-01 1 1.389920e-01 1 1.749850e-02 1 2.231830e-03 1 8.596980e-05 1 1.392060e-01 1 1.047680e-01 1 4.284760e-02 1 3.450500e-02 1 1.569120e-01 1 5.547550e-02 1 9.559670e-02 1 6.207120e-02 1 5.368170e-03 1 2.235820e-04 1 4.376930e-02 1 8.895820e-02 1 4.533190e-03 1 2.840400e-02 1 1.060070e-01 1 1.104810e-01 1 8.696430e-02 1 8.131910e-02 1 1.313280e-01 1 1.069870e-01 1 9.787480e-02 1 9.962040e-03 1 3.646910e-02 1 1.632880e-01 1 4.047220e-03 1 4.409420e-02 1 5.621240e-02 1 2.622140e-02 1 7.602220e-02 1 8.711300e-03 1 6.326940e-02 1 1.452310e-01 1 2.037110e-02 1 7.172630e-02 1 1.243760e-02 1 3.484640e-02 1 8.530920e-02 1 7.779770e-02 1 8.523650e-02 1 7.576420e-02 1 1.176100e-02 1 1.670220e-03 1 2.353640e-02 1 5.642000e-02 1 6.159600e-02 1 9.395220e-02 1 1.118400e-01 1 7.013380e-02 1 3.481510e-03 1 5.444860e-02 1 7.116670e-04 1 8.598910e-02 1 5.191340e-02 1 1.302730e-01 1 4.441290e-02 1 4.575440e-04 1 9.394400e-02 1 1.484720e-02 1 1.793850e-01 1 7.787500e-02 1 3.422620e-02 1 5.685050e-02 1 1.024660e-01 1 1.161970e-01 1 4.852950e-02 1 1.305820e-02 1 1.586080e-02 1 2.227520e-01 1 3.766180e-02 1 5.233530e-02 1 9.472660e-02 1 6.903820e-02 1 2.456530e-01 1 8.344090e-03 1 5.867210e-02 1 3.784360e-03 1 2.972460e-03 1 1.097520e-01 1 1.483090e-01 1 1.109360e-02 1 1.649670e-01 1 8.014560e-02 1 7.869400e-02 1 2.115360e-03 1 7.530610e-02 1 4.355930e-02 1 1.332660e-01 1 1.619920e-02 1 1.324640e-04 1 1.953030e-02 1 1.327010e-01 1 4.045560e-04 1 1.585330e-01 1 1.751740e-03 1 2.822830e-02 1 7.726600e-02 1 2.691730e-02 1 8.259860e-02 1 5.397480e-03 1 1.527380e-01 1 8.327470e-02 1 2.688990e-03 1 1.107180e-01 1 8.528020e-04 1 9.791590e-02 1 4.643950e-02 1 2.322000e-05 1 3.064810e-02 1 8.949520e-03 1 1.897370e-01 1 1.367120e-01 1 4.300260e-02 1 2.846790e-02 1 5.981410e-02 1 2.104100e-02 1 4.617600e-03 1 2.933990e-02 1 1.736560e-01 1 4.850770e-02 1 7.611000e-02 1 1.399110e-01 1 5.109370e-02 1 3.775400e-02 1 4.485370e-02 1 1.593480e-01 1 4.161420e-02 1 9.345740e-02 1 1.616140e-01 1 1.302790e-03 1 6.834690e-02 1 1.131780e-02 1 1.148540e-01 1 1.327590e-01 1 7.332020e-02 1 7.946740e-03 1 7.644300e-02 1 2.677530e-02 1 3.469330e-02 1 6.604660e-02 1 1.529690e-02 1 1.428380e-01 1 4.854950e-02 1 2.276770e-01 1 7.556160e-05 1 3.547060e-02 1 2.099310e-02 1 7.294080e-02 1 5.677150e-02 1 2.632080e-02 1 2.925780e-02 1 8.986300e-02 1 1.475350e-02 1 1.619070e-02 1 6.243350e-03 1 9.193000e-02 1 7.209940e-02 1 9.804000e-02 1 6.012990e-02 1 2.856750e-02 1 4.835900e-02 1 8.705120e-02 1 2.314140e-02 1 1.819850e-01 1 3.574500e-02 1 6.545560e-02 1 1.101490e-02 1 4.069580e-02 1 2.846970e-02 1 3.830970e-02 1 6.073450e-02 1 1.742180e-01 1 9.063290e-02 1 1.346670e-01 1 7.860190e-02 1 3.550230e-02 1 1.375870e-01 1 3.657050e-02 1 7.906670e-02 1 1.345890e-01 1 2.156260e-02 1 9.032110e-04 1 2.236510e-02 1 1.080200e-01 1 2.049280e-02 1 1.540050e-02 1 5.511350e-02 1 1.983810e-02 1 4.952370e-02 1 6.700630e-02 1 1.063730e-02 1 1.430580e-03 1 2.487630e-02 1 1.428600e-01 1 6.016500e-03 1 8.147780e-02 1 3.225740e-02 1 9.802910e-02 1 2.068030e-01 1 8.659120e-02 1 6.469700e-02 1 8.587890e-02 1 1.133840e-05 1 1.649430e-01 1 6.863890e-03 1 2.743000e-03 1 6.525660e-02 1 7.700380e-02 1 6.131410e-02 1 2.130110e-01 1 1.321730e-01 1 7.079450e-02 1 2.017110e-01 1 5.849250e-02 1 1.469420e-04 1 1.672850e-01 1 6.712560e-03 1 4.587770e-02 1 3.532590e-03 1 1.004520e-01 1 5.904750e-02 1 8.639890e-02 1 1.064620e-01 1 3.010330e-06 1 6.374850e-02 1 1.672360e-02 1 5.947130e-02 1 1.037920e-01 1 1.329600e-01 1 1.532330e-01 1 1.957720e-02 1 1.842460e-01 1 4.739110e-02 1 1.543210e-02 1 2.031630e-01 1 4.708700e-02 1 3.824300e-02 1 2.801720e-03 1 3.098640e-02 1 1.413230e-03 1 1.648340e-02 1 5.022100e-02 1 3.677300e-02 1 2.560790e-03 1 7.618920e-02 1 6.438090e-03 1 4.822830e-02 1 6.353280e-02 1 7.761600e-02 1 5.512470e-03 1 6.530570e-02 1 3.278380e-02 1 1.245620e-01 1 2.697160e-03 1 3.432010e-03 1 2.160560e-02 1 5.984040e-02 1 5.947550e-02 1 1.959530e-02 1 8.604930e-03 1 8.155140e-02 1 8.179890e-02 1 1.299410e-02 1 6.809160e-02 1 1.205050e-01 1 3.560360e-02 1 1.082320e-01 1 1.058540e-02 1 1.127990e-01 1 1.657920e-02 1 5.206580e-05 1 2.275010e-02 1 1.412180e-03 1 4.990060e-02 1 2.497160e-02 1 1.385430e-01 1 1.251850e-01 1 8.383410e-02 1 2.214320e-02 1 1.221230e-01 1 8.893480e-02 1 4.205780e-02 1 7.279910e-02 1 1.076990e-01 1 1.116860e-01 1 1.158880e-01 1 5.401840e-02 1 1.682110e-01 1 3.168390e-02 1 1.205530e-01 1 3.570160e-02 1 6.065850e-02 1 1.208220e-01 1 1.320720e-02 1 6.033120e-02 1 1.055060e-01 1 7.444000e-02 1 7.500770e-02 1 7.143890e-02 1 7.201000e-02 1 5.570870e-03 1 5.984600e-02 1 1.710390e-02 1 3.543960e-02 1 5.156880e-04 1 2.231070e-03 1 1.013420e-02 1 9.319300e-02 1 2.351950e-04 1 1.964100e-02 1 3.115190e-02 1 6.719030e-03 1 3.887490e-02 1 2.218420e-02 1 5.281770e-02 1 7.209650e-02 1 6.350350e-02 1 4.431090e-02 1 4.148440e-02 1 2.706730e-01 1 9.157150e-02 1 1.039000e-01 1 8.782360e-02 1 2.397040e-02 1 7.750020e-04 1 1.625340e-02 1 8.218640e-02 1 1.102490e-01 1 7.472730e-02 1 9.648050e-02 1 8.917250e-02 1 4.388540e-02 1 4.269210e-03 1 8.123140e-02 1 1.446140e-01 1 1.102840e-01 1 1.175060e-01 1 7.535360e-03 1 1.847740e-02 1 3.908480e-02 1 1.738100e-01 1 1.609830e-01 1 4.674500e-02 1 6.583470e-02 1 9.452260e-02 1 7.348170e-02 1 3.307900e-02 1 1.075430e-01 1 9.595890e-02 1 1.598370e-01 1 1.778220e-01 1 1.784770e-02 1 4.903330e-03 1 1.138660e-01 1 6.975990e-02 1 5.211020e-02 1 6.517470e-02 1 1.562490e-01 1 5.880620e-03 1 5.424740e-02 1 5.266470e-02 1 4.067350e-02 1 6.696390e-02 1 7.683370e-02 1 5.590290e-03 1 2.940880e-02 1 8.718360e-02 1 3.443740e-02 1 9.689870e-02 1 1.697250e-02 1 2.015430e-03 1 1.327910e-01 1 2.195340e-02 1 8.650160e-02 1 1.281580e-02 1 1.198900e-01 1 2.080890e-03 1 1.942680e-02 1 7.369710e-02 1 6.564870e-02 1 1.984280e-01 1 8.795070e-02 1 1.546030e-01 1 2.578480e-02 1 1.020580e-01 1 9.160200e-02 1 7.022590e-02 1 4.502800e-02 1 4.692800e-03 1 4.603820e-02 1 6.395620e-03 1 3.044040e-04 1 4.326760e-02 1 4.251450e-02 1 1.342290e-01 1 4.122050e-02 1 1.163740e-01 1 3.544260e-03 1 1.962790e-01 1 2.639620e-03 1 3.479650e-02 1 5.418650e-02 1 5.383990e-02 1 3.996670e-02 1 2.412030e-03 1 1.566060e-01 1 9.826430e-03 1 8.039820e-02 1 1.506580e-03 1 1.108750e-01 1 6.717870e-05 1 4.231310e-02 1 1.342030e-01 1 7.037050e-02 1 8.262820e-02 1 6.111280e-02 1 2.599010e-02 1 3.946460e-02 1 2.418780e-01 1 3.328130e-03 1 1.004600e-01 1 1.641350e-01 1 2.428450e-02 1 9.558480e-02 1 7.391100e-02 1 5.787350e-02 1 1.041320e-01 1 1.117000e-01 1 6.916290e-03 1 1.350550e-01 1 1.277260e-02 1 4.324800e-04 1 1.192180e-01 1 6.653600e-02 1 9.671380e-03 1 1.460310e-02 1 6.586780e-02 1 7.523110e-02 1 2.092130e-01 1 1.228870e-01 1 2.520140e-02 1 1.208480e-02 1 8.871870e-02 1 1.539440e-02 1 5.077620e-02 1 1.679290e-02 1 4.068180e-02 1 4.462030e-03 1 4.325530e-02 1 5.059200e-02 1 4.887300e-02 1 1.072780e-02 1 6.853350e-02 1 3.327190e-02 1 2.300410e-02 1 1.512570e-03 1 2.343640e-04 1 5.433850e-02 1 2.470940e-03 1 3.600710e-02 1 1.617540e-03 1 6.948570e-02 1 8.729950e-02 1 1.032460e-01 1 4.033260e-02 1 9.684300e-02 1 3.272680e-02 1 1.056410e-01 1 1.090140e-01 1 2.012570e-02 1 3.744860e-02 1 1.470730e-05 1 9.936250e-02 1 1.041390e-01 1 6.903820e-03 1 1.066690e-02 1 2.820720e-02 1 3.878780e-03 1 4.329430e-03 1 4.859160e-02 1 2.532360e-02 1 1.185860e-02 1 1.257450e-01 1 4.998820e-02 1 1.663310e-01 1 1.547680e-02 1 4.233530e-02 1 7.387620e-02 1 1.762880e-02 1 7.748090e-02 1 2.623640e-02 1 3.743190e-02 1 6.665580e-02 1 1.092020e-02 1 8.292380e-02 1 6.390120e-02 1 1.225410e-01 1 2.656550e-02 1 9.214290e-02 1 1.116870e-03 1 9.784590e-02 1 7.610200e-03 1 1.095700e-01 1 3.188660e-02 1 4.760780e-02 1 3.972460e-02 1 8.324730e-02 1 2.957500e-04 1 2.162060e-04 1 3.490900e-03 1 4.601140e-03 1 6.436600e-02 1 1.321540e-01 1 1.723250e-02 1 2.607190e-02 1 8.298110e-02 1 5.242260e-02 1 4.903300e-02 1 8.543940e-02 1 2.013780e-03 1 1.176880e-01 1 8.037950e-02 1 1.718340e-02 1 4.256800e-02 1 6.859410e-02 1 4.543650e-03 1 1.208730e-01 1 1.601040e-01 1 1.963990e-01 1 8.011670e-02 1 3.761250e-02 1 6.923100e-02 1 1.634850e-01 1 7.731050e-03 1 5.423000e-02 1 5.613700e-02 1 2.324950e-03 1 5.953800e-02 1 1.490510e-01 1 1.733120e-03 1 1.557940e-02 1 1.457150e-01 1 9.097040e-02 1 5.890850e-02 1 3.228240e-03 1 4.837810e-02 1 1.386120e-01 1 1.196670e-02 1 1.007700e-02 1 1.101910e-02 1 5.479450e-03 1 1.704870e-01 1 6.768150e-02 1 3.424360e-05 1 9.248170e-02 1 2.168390e-01 1 1.088210e-01 1 1.111770e-01 1 4.083590e-02 1 8.661370e-02 1 9.499060e-02 1 3.953230e-02 1 7.496210e-02 1 1.417730e-02 1 4.659260e-02 1 4.472530e-02 1 5.255170e-03 1 1.165680e-02 1 4.869420e-02 1 7.247480e-02 1 4.019720e-03 1 5.749540e-02 1 6.481490e-03 1 8.301840e-02 1 5.767950e-03 1 9.392850e-02 1 1.798100e-02 1 1.495090e-01 1 6.330860e-02 1 3.423730e-03 1 1.127740e-02 1 2.378530e-02 1 7.065160e-02 1 9.435330e-02 1 1.251820e-01 1 3.348890e-02 1 1.694150e-01 1 3.578780e-02 1 9.003240e-02 1 3.725150e-04 1 2.851940e-02 1 4.896790e-02 1 1.495360e-01 1 1.015590e-01 1 7.549170e-02 1 3.019840e-02 1 1.310320e-02 1 3.892870e-03 1 6.974950e-02 1 1.525020e-04 1 1.544140e-01 1 1.648710e-01 1 2.746040e-02 1 9.701730e-03 1 9.168510e-02 1 1.822410e-01 1 1.375160e-01 1 9.411200e-02 1 2.903540e-02 1 3.941050e-03 1 1.156350e-02 1 8.765390e-02 1 8.016830e-02 1 8.141930e-02 1 5.456980e-02 1 1.160870e-01 1 1.346970e-01 1 7.969410e-02 1 6.462700e-02 1 1.652250e-01 1 1.479120e-01 1 4.895950e-02 1 6.845650e-02 1 1.060030e-01 1 4.376340e-02 1 3.632470e-02 1 3.552820e-02 1 1.410120e-01 1 9.622860e-02 1 1.442830e-03 1 1.770920e-03 1 7.162800e-03 1 1.312460e-01 1 4.495340e-03 1 6.295630e-03 1 4.368580e-02 1 2.769820e-02 1 8.140000e-04 1 7.650690e-02 1 8.839120e-02 1 1.764780e-02 1 1.145240e-02 1 6.308750e-02 1 1.792000e-01 1 9.519660e-02 1 1.546060e-01 1 1.246300e-03 1 1.015370e-01 1 5.242300e-02 1 1.444940e-01 1 5.641250e-02 1 1.904430e-02 1 7.549900e-03 1 6.856500e-04 1 2.795230e-02 1 9.988370e-02 1 2.022100e-02 1 2.200940e-02 1 1.476290e-02 1 9.113280e-02 1 7.943340e-02 1 1.393420e-01 1 1.146400e-01 1 6.205000e-02 1 1.180750e-03 1 1.516310e-01 1 1.598240e-04 1 2.703660e-02 1 9.277400e-02 1 9.820660e-02 1 1.320600e-02 1 1.060140e-01 1 4.400190e-02 1 1.270370e-01 1 1.404020e-03 1 1.273900e-03 1 8.451430e-03 1 3.980820e-02 1 5.654810e-02 1 1.309520e-03 1 1.666270e-02 1 7.988310e-02 1 1.227010e-01 1 4.739660e-02 1 6.829650e-02 1 3.167330e-02 1 4.760140e-02 1 1.951600e-02 1 5.183470e-02 1 7.871970e-02 1 1.433280e-01 1 4.359740e-04 1 3.383370e-03 1 1.094540e-01 1 2.400660e-02 1 1.328200e-01 1 2.098650e-03 1 8.364330e-02 1 3.383450e-02 1 Name: p3_conf, dtype: int64
image_prediction.p3_dog.value_counts()
True 1499 False 576 Name: p3_dog, dtype: int64
twitter_archive_website.head()
| tweet_id | favorite_count | retweet_count | |
|---|---|---|---|
| 0 | 892420643555336193 | 36078 | 7680 |
| 1 | 892177421306343426 | 31117 | 5681 |
| 2 | 891815181378084864 | 23429 | 3765 |
| 3 | 891689557279858688 | 39343 | 7843 |
| 4 | 891327558926688256 | 37571 | 8450 |
twitter_archive_website.shape
(2331, 3)
twitter_archive_website.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2331 entries, 0 to 2330 Data columns (total 3 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2331 non-null int64 1 favorite_count 2331 non-null int64 2 retweet_count 2331 non-null int64 dtypes: int64(3) memory usage: 54.8 KB
twitter_archive_website.duplicated().sum()
0
twitter_archive_website.describe()
| tweet_id | favorite_count | retweet_count | |
|---|---|---|---|
| count | 2.331000e+03 | 2331.000000 | 2331.000000 |
| mean | 7.419079e+17 | 7532.063063 | 2695.631918 |
| std | 6.823170e+16 | 11691.365355 | 4557.443108 |
| min | 6.660209e+17 | 0.000000 | 1.000000 |
| 25% | 6.782670e+17 | 1312.500000 | 545.500000 |
| 50% | 7.182469e+17 | 3275.000000 | 1264.000000 |
| 75% | 7.986692e+17 | 9222.500000 | 3134.500000 |
| max | 8.924206e+17 | 155583.000000 | 77550.000000 |
twitter_archive_website.tweet_id.value_counts()
749075273010798592 1 671163268581498880 1 743510151680958465 1 798644042770751489 1 825120256414846976 1 769212283578875904 1 700462010979500032 1 780858289093574656 1 699775878809702401 1 880095782870896641 1 760521673607086080 1 776477788987613185 1 691820333922455552 1 715696743237730304 1 714606013974974464 1 760539183865880579 1 813157409116065792 1 833722901757046785 1 805487436403003392 1 842765311967449089 1 670093938074779648 1 756651752796094464 1 674742531037511680 1 670704688707301377 1 667160273090932737 1 674394782723014656 1 672082170312290304 1 759923798737051648 1 685315239903100929 1 818259473185828864 1 809920764300447744 1 838085839343206401 1 666051853826850816 1 673686845050527744 1 738891149612572673 1 676430933382295552 1 847251039262605312 1 741099773336379392 1 889665388333682689 1 804413760345620481 1 753026973505581056 1 704859558691414016 1 713761197720473600 1 836677758902222849 1 670783437142401025 1 667866724293877760 1 819015331746349057 1 686035780142297088 1 814986499976527872 1 683449695444799489 1 806542213899489280 1 667538891197542400 1 810254108431155201 1 743210557239623680 1 708026248782585858 1 702321140488925184 1 878776093423087618 1 782969140009107456 1 828409743546925057 1 813051746834595840 1 750071704093859840 1 672975131468300288 1 676219687039057920 1 797165961484890113 1 675891555769696257 1 674690135443775488 1 714957620017307648 1 791026214425268224 1 684241637099323392 1 749403093750648834 1 670449342516494336 1 743545585370791937 1 770655142660169732 1 772581559778025472 1 793120401413079041 1 672523490734551040 1 719339463458033665 1 851861385021730816 1 706901761596989440 1 807106840509214720 1 732375214819057664 1 836397794269200385 1 684538444857667585 1 843856843873095681 1 717421804990701568 1 776813020089548800 1 692423280028966913 1 721503162398597120 1 766078092750233600 1 787397959788929025 1 666418789513326592 1 789268448748703744 1 672245253877968896 1 670468609693655041 1 692568918515392513 1 669923323644657664 1 669571471778410496 1 822975315408461824 1 668955713004314625 1 837471256429613056 1 715733265223708672 1 841833993020538882 1 786664955043049472 1 836380477523124226 1 669203728096960512 1 778396591732486144 1 676606785097199616 1 707693576495472641 1 711968124745228288 1 669324657376567296 1 744971049620602880 1 891689557279858688 1 693109034023534592 1 746131877086527488 1 734776360183431168 1 732585889486888962 1 707983188426153984 1 768473857036525572 1 680970795137544192 1 880465832366813184 1 673689733134946305 1 751937170840121344 1 814530161257443328 1 774314403806253056 1 687109925361856513 1 826598365270007810 1 671488513339211776 1 677557565589463040 1 831911600680497154 1 710296729921429505 1 842115215311396866 1 675845657354215424 1 776249906839351296 1 766714921925144576 1 821813639212650496 1 884441805382717440 1 698703483621523456 1 668268907921326080 1 675798442703122432 1 666776908487630848 1 702598099714314240 1 669359674819481600 1 673355879178194945 1 785872687017132033 1 803692223237865472 1 740676976021798912 1 813066809284972545 1 737826014890496000 1 781524693396357120 1 671520732782923777 1 791780927877898241 1 828372645993398273 1 808106460588765185 1 799774291445383169 1 778624900596654080 1 851224888060895234 1 716447146686459905 1 672980819271634944 1 679736210798047232 1 798694562394996736 1 669603084620980224 1 747219827526344708 1 833826103416520705 1 711306686208872448 1 679877062409191424 1 727524757080539137 1 671362598324076544 1 689623661272240129 1 793241302385262592 1 805520635690676224 1 672488522314567680 1 668237644992782336 1 672902681409806336 1 803321560782307329 1 740359016048689152 1 754874841593970688 1 671109016219725825 1 862096992088072192 1 683078886620553216 1 668994913074286592 1 698262614669991936 1 750383411068534784 1 834089966724603904 1 682638830361513985 1 743595368194129920 1 678991772295516161 1 667174963120574464 1 710997087345876993 1 857029823797047296 1 813172488309972993 1 882045870035918850 1 762471784394268675 1 667878741721415682 1 712809025985978368 1 888554962724278272 1 819347104292290561 1 687476254459715584 1 671147085991960577 1 672125275208069120 1 690959652130045952 1 715342466308784130 1 878281511006478336 1 850380195714523136 1 680497766108381184 1 712668654853337088 1 751793661361422336 1 729838605770891264 1 686034024800862208 1 683852578183077888 1 811386762094317568 1 671115716440031232 1 671186162933985280 1 700864154249383937 1 689275259254616065 1 841320156043304961 1 798686750113755136 1 684177701129875456 1 802600418706604034 1 796759840936919040 1 667119796878725120 1 838083903487373313 1 680494726643068929 1 689659372465688576 1 676936541936185344 1 751583847268179968 1 667182792070062081 1 748575535303884801 1 740711788199743490 1 672222792075620352 1 832032802820481025 1 668641109086707712 1 714982300363173890 1 745074613265149952 1 689993469801164801 1 689905486972461056 1 861288531465048066 1 672594978741354496 1 676957860086095872 1 788070120937619456 1 822462944365645825 1 679503373272485890 1 751830394383790080 1 783466772167098368 1 685681090388975616 1 695816827381944320 1 697259378236399616 1 864279568663928832 1 736736130620620800 1 676975532580409345 1 842535590457499648 1 667211855547486208 1 684460069371654144 1 688385280030670848 1 669393256313184256 1 747933425676525569 1 684188786104872960 1 881906580714921986 1 858860390427611136 1 700143752053182464 1 817536400337801217 1 827933404142436356 1 837820167694528512 1 787717603741622272 1 806576416489959424 1 822163064745328640 1 669972011175813120 1 699088579889332224 1 777953400541634568 1 680440374763077632 1 678399652199309312 1 832769181346996225 1 736365877722001409 1 802952499103731712 1 708834316713893888 1 782598640137187329 1 683481228088049664 1 748346686624440324 1 668528771708952576 1 668779399630725120 1 668892474547511297 1 697575480820686848 1 709852847387627521 1 706265994973601792 1 844223788422217728 1 767884188863397888 1 821107785811234820 1 669567591774625800 1 684222868335505415 1 670465786746662913 1 714214115368108032 1 775898661951791106 1 670838202509447168 1 712438159032893441 1 776113305656188928 1 676590572941893632 1 706166467411222528 1 828361771580813312 1 826848821049180160 1 674051556661161984 1 828801551087042563 1 671896809300709376 1 718234618122661888 1 680798457301471234 1 672231046314901505 1 669680153564442624 1 690649993829576704 1 720785406564900865 1 792913359805018113 1 689517482558820352 1 747103485104099331 1 835152434251116546 1 675006312288268288 1 696877980375769088 1 767754930266464257 1 750147208377409536 1 750041628174217216 1 836753516572119041 1 710283270106132480 1 734912297295085568 1 885518971528720385 1 796484825502875648 1 666020888022790149 1 714962719905021952 1 667393430834667520 1 697616773278015490 1 834167344700198914 1 688064179421470721 1 803380650405482500 1 696490539101908992 1 860177593139703809 1 830173239259324417 1 700518061187723268 1 816697700272001025 1 819952236453363712 1 696894894812565505 1 678774928607469569 1 699801817392291840 1 704054845121142784 1 708400866336894977 1 674042553264685056 1 691793053716221953 1 836260088725786625 1 838916489579200512 1 734559631394082816 1 740365076218183684 1 670079681849372674 1 677698403548192770 1 707995814724026368 1 878604707211726852 1 674781762103414784 1 682047327939461121 1 679777920601223168 1 714251586676113411 1 700747788515020802 1 724004602748780546 1 682962037429899265 1 739485634323156992 1 692901601640583168 1 701545186879471618 1 674764817387900928 1 671138694582165504 1 728015554473250816 1 776218204058357768 1 813127251579564032 1 678740035362037760 1 817908911860748288 1 674307341513269249 1 816336735214911488 1 796116448414461957 1 702332542343577600 1 689143371370250240 1 740373189193256964 1 825829644528148480 1 742161199639494656 1 668643542311546881 1 821044531881721856 1 693629975228977152 1 798209839306514432 1 674008982932058114 1 802572683846291456 1 676946864479084545 1 846042936437604353 1 802185808107208704 1 832215726631055365 1 667550904950915073 1 679462823135686656 1 668274247790391296 1 680805554198020098 1 831670449226514432 1 697596423848730625 1 671528761649688577 1 889531135344209921 1 672988786805112832 1 666826780179869698 1 820494788566847489 1 803276597545603072 1 684195085588783105 1 686394059078897668 1 672267570918129665 1 748705597323898880 1 772102971039580160 1 675820929667219457 1 793195938047070209 1 693231807727280129 1 821149554670182400 1 776201521193218049 1 739979191639244800 1 817171292965273600 1 737445876994609152 1 871515927908634625 1 881666595344535552 1 670717338665226240 1 674788554665512960 1 705475953783398401 1 782305867769217024 1 768970937022709760 1 745314880350101504 1 725729321944506368 1 669371483794317312 1 692017291282812928 1 690932576555528194 1 667534815156183040 1 733822306246479872 1 718939241951195136 1 705428427625635840 1 800443802682937345 1 666057090499244032 1 871762521631449091 1 677301033169788928 1 687818504314159109 1 694925794720792577 1 667200525029539841 1 669749430875258880 1 886258384151887873 1 684880619965411328 1 686358356425093120 1 795076730285391872 1 856543823941562368 1 730196704625098752 1 671544874165002241 1 813142292504645637 1 780192070812196864 1 676588346097852417 1 706291001778950144 1 767191397493538821 1 735648611367784448 1 709225125749587968 1 754120377874386944 1 670733412878163972 1 880221127280381952 1 798628517273620480 1 694342028726001664 1 800141422401830912 1 800018252395122689 1 832757312314028032 1 741067306818797568 1 750056684286914561 1 675483430902214656 1 836001077879255040 1 746872823977771008 1 786595970293370880 1 675870721063669760 1 752334515931054080 1 671542985629241344 1 779056095788752897 1 673295268553605120 1 699079609774645248 1 782021823840026624 1 668636665813057536 1 666268910803644416 1 815745968457060357 1 667470559035432960 1 675166823650848770 1 856330835276025856 1 671547767500775424 1 829449946868879360 1 667073648344346624 1 828376505180889089 1 674019345211760640 1 872620804844003328 1 835536468978302976 1 687127927494963200 1 696100768806522880 1 850753642995093505 1 731285275100512256 1 715680795826982913 1 840761248237133825 1 675517828909424640 1 669351434509529089 1 677334615166730240 1 768193404517830656 1 678675843183484930 1 685532292383666176 1 678755239630127104 1 690400367696297985 1 686003207160610816 1 761227390836215808 1 670789397210615808 1 879376492567855104 1 705442520700944385 1 826476773533745153 1 690348396616552449 1 796904159865868288 1 780543529827336192 1 692142790915014657 1 666055525042405380 1 695446424020918272 1 668981893510119424 1 719991154352222208 1 689557536375177216 1 772117678702071809 1 831262627380748289 1 669573570759163904 1 720415127506415616 1 854010172552949760 1 745712589599014916 1 839549326359670784 1 667177989038297088 1 678334497360859136 1 785533386513321988 1 667937095915278337 1 748324050481647620 1 869596645499047938 1 669327207240699904 1 669682095984410625 1 844580511645339650 1 690015576308211712 1 716791146589110272 1 824297048279236611 1 710140971284037632 1 788412144018661376 1 682750546109968385 1 672248013293752320 1 796149749086875649 1 889880896479866881 1 793845145112371200 1 759047813560868866 1 670840546554966016 1 838476387338051585 1 706904523814649856 1 675362609739206656 1 761745352076779520 1 766313316352462849 1 850333567704068097 1 756303284449767430 1 831315979191906304 1 669564461267722241 1 757597904299253760 1 699370870310113280 1 835309094223372289 1 671789708968640512 1 780931614150983680 1 738883359779196928 1 681694085539872773 1 718971898235854848 1 709519240576036864 1 852672615818899456 1 670417414769758208 1 670807719151067136 1 706516534877929472 1 821886076407029760 1 698195409219559425 1 760893934457552897 1 694905863685980160 1 670804601705242624 1 814638523311648768 1 674269164442398721 1 869772420881756160 1 667724302356258817 1 742528092657332225 1 753294487569522689 1 672898206762672129 1 792050063153438720 1 703774238772166656 1 703079050210877440 1 746521445350707200 1 667171260800061440 1 811647686436880384 1 802323869084381190 1 761334018830917632 1 817181837579653120 1 691416866452082688 1 875747767867523072 1 670842764863651840 1 672095186491711488 1 676897532954456065 1 851464819735769094 1 675015141583413248 1 706153300320784384 1 709566166965075968 1 817423860136083457 1 684225744407494656 1 706593038911545345 1 673906403526995968 1 802265048156610565 1 678023323247357953 1 676440007570247681 1 669367896104181761 1 829878982036299777 1 855862651834028034 1 838921590096166913 1 863427515083354112 1 867051520902168576 1 818145370475810820 1 883482846933004288 1 710833117892898816 1 729463711119904772 1 747600769478692864 1 697463031882764288 1 847606175596138505 1 703769065844768768 1 670782429121134593 1 680913438424612864 1 737678689543020544 1 671743150407421952 1 801854953262350336 1 743835915802583040 1 867421006826221569 1 666781792255496192 1 683828599284170753 1 794332329137291264 1 787111942498508800 1 813112105746448384 1 669597912108789760 1 798933969379225600 1 885311592912609280 1 765719909049503744 1 672481316919734272 1 845306882940190720 1 681981167097122816 1 676949632774234114 1 687399393394311168 1 746790600704425984 1 817827839487737858 1 789599242079838210 1 682259524040966145 1 677547928504967168 1 727685679342333952 1 711008018775851008 1 683111407806746624 1 773308824254029826 1 693486665285931008 1 752701944171524096 1 668960084974809088 1 788765914992902144 1 796031486298386433 1 671735591348891648 1 796125600683540480 1 827324948884643840 1 827199976799354881 1 666337882303524864 1 798673117451325440 1 666373753744588802 1 783839966405230592 1 742534281772302336 1 835297930240217089 1 710269109699739648 1 702899151802126337 1 825535076884762624 1 670442337873600512 1 685641971164143616 1 667873844930215936 1 668542336805281792 1 671182547775299584 1 692530551048294401 1 777684233540206592 1 745057283344719872 1 795464331001561088 1 831322785565769729 1 792883833364439040 1 849776966551130114 1 845677943972139009 1 699434518667751424 1 757611664640446465 1 714141408463036416 1 814153002265309185 1 824796380199809024 1 879050749262655488 1 711743778164514816 1 689283819090870273 1 690005060500217858 1 793165685325201412 1 759159934323924993 1 806219024703037440 1 708711088997666817 1 768554158521745409 1 684481074559381504 1 674271431610523648 1 668190681446379520 1 693993230313091072 1 666396247373291520 1 831552930092285952 1 667530908589760512 1 685325112850124800 1 725786712245440512 1 887705289381826560 1 778774459159379968 1 688916208532455424 1 698549713696649216 1 671891728106971137 1 793150605191548928 1 672997845381865473 1 819588359383371776 1 833732339549220864 1 819711362133872643 1 784826020293709826 1 667369227918143488 1 875144289856114688 1 746369468511756288 1 744223424764059648 1 679132435750195208 1 749395845976588288 1 689977555533848577 1 671122204919246848 1 820749716845686786 1 682088079302213632 1 770787852854652928 1 706681918348251136 1 739544079319588864 1 750011400160841729 1 837110210464448512 1 758041019896193024 1 825147591692263424 1 782747134529531904 1 835685285446955009 1 705239209544720384 1 712065007010385924 1 778286810187399168 1 777189768882946048 1 760290219849637889 1 706169069255446529 1 670474236058800128 1 780601303617732608 1 771136648247640064 1 828381636999917570 1 834574053763584002 1 681891461017812993 1 789960241177853952 1 705975130514706432 1 849668094696017920 1 678021115718029313 1 727314416056803329 1 706538006853918722 1 696488710901260288 1 686007916130873345 1 773247561583001600 1 670755717859713024 1 670403879788544000 1 887473957103951883 1 723673163800948736 1 674063288070742018 1 667165590075940865 1 670826280409919488 1 679475951516934144 1 755206590534418437 1 677565715327688705 1 668204964695683073 1 695794761660297217 1 676191832485810177 1 790277117346975746 1 666691418707132416 1 801958328846974976 1 712097430750289920 1 676948236477857792 1 678798276842360832 1 746507379341139972 1 883360690899218434 1 684147889187209216 1 747844099428986880 1 849051919805034497 1 673956914389192708 1 673320132811366400 1 723179728551723008 1 682242692827447297 1 668979806671884288 1 728387165835677696 1 861383897657036800 1 708349470027751425 1 677228873407442944 1 732732193018155009 1 668291999406125056 1 666835007768551424 1 855860136149123072 1 686377065986265092 1 850019790995546112 1 673270968295534593 1 751538714308972544 1 692041934689402880 1 684969860808454144 1 788552643979468800 1 802239329049477120 1 857214891891077121 1 832040443403784192 1 847978865427394560 1 685321586178670592 1 701981390485725185 1 790698755171364864 1 733460102733135873 1 773704687002451968 1 874296783580663808 1 666428276349472768 1 871166179821445120 1 801115127852503040 1 786051337297522688 1 773336787167145985 1 698710712454139905 1 891327558926688256 1 810896069567610880 1 677328882937298944 1 834786237630337024 1 804738756058218496 1 761004547850530816 1 754747087846248448 1 787322443945877504 1 666044226329800704 1 780074436359819264 1 761672994376806400 1 772615324260794368 1 676237365392908289 1 681523177663676416 1 688894073864884227 1 693644216740769793 1 815990720817401858 1 769695466921623552 1 772193107915964416 1 691096613310316544 1 770293558247038976 1 766423258543644672 1 848213670039564288 1 684959798585110529 1 703382836347330562 1 680221482581123072 1 674767892831932416 1 889638837579907072 1 706644897839910912 1 872820683541237760 1 717428917016076293 1 680889648562991104 1 744995568523612160 1 752173152931807232 1 771770456517009408 1 838831947270979586 1 692535307825213440 1 750026558547456000 1 750132105863102464 1 703407252292673536 1 840696689258311684 1 704480331685040129 1 780496263422808064 1 753298634498793472 1 773670353721753600 1 670086499208155136 1 741793263812808706 1 708130923141795840 1 748568946752774144 1 671882082306625538 1 835172783151792128 1 667801013445750784 1 690248561355657216 1 890729181411237888 1 762464539388485633 1 678708137298427904 1 691444869282295808 1 707629649552134146 1 772826264096874500 1 813217897535406080 1 790946055508652032 1 681302363064414209 1 748337862848962560 1 886366144734445568 1 677687604918272002 1 677335745548390400 1 808134635716833280 1 674664755118911488 1 668507509523615744 1 670433248821026816 1 671536543010570240 1 892177421306343426 1 758828659922702336 1 680940246314430465 1 778650543019483137 1 746056683365994496 1 818536468981415936 1 763103485927849985 1 791821351946420224 1 668633411083464705 1 824025158776213504 1 679062614270468097 1 885984800019947520 1 683357973142474752 1 709556954897764353 1 667806454573760512 1 798340744599797760 1 877611172832227328 1 874057562936811520 1 676215927814406144 1 867900495410671616 1 748220828303695873 1 693262851218264065 1 687826841265172480 1 790987426131050500 1 680085611152338944 1 671729906628341761 1 884876753390489601 1 718454725339934721 1 709918798883774466 1 761976711479193600 1 786729988674449408 1 686947101016735744 1 814578408554463233 1 778039087836069888 1 695074328191332352 1 672964561327235073 1 712085617388212225 1 672254177670729728 1 684800227459624960 1 675334060156301312 1 670444955656130560 1 778408200802557953 1 698989035503689728 1 785515384317313025 1 701889187134500865 1 709042156699303936 1 865718153858494464 1 672239279297454080 1 681281657291280384 1 753655901052166144 1 684914660081053696 1 860563773140209665 1 747885874273214464 1 666786068205871104 1 667524857454854144 1 669216679721873412 1 876537666061221889 1 768609597686943744 1 672591762242805761 1 677331501395156992 1 793256262322548741 1 730427201120833536 1 879862464715927552 1 677700003327029250 1 678396796259975168 1 752917284578922496 1 675740360753160193 1 863079547188785154 1 668988183816871936 1 695767669421768709 1 705102439679201280 1 816091915477250048 1 694001791655137281 1 682059653698686977 1 683857920510050305 1 692894228850999298 1 876838120628539392 1 861005113778896900 1 823322678127919110 1 848690551926992896 1 672591271085670400 1 831309418084069378 1 674422304705744896 1 707038192327901184 1 762699858130116608 1 747816857231626240 1 721001180231503872 1 735256018284875776 1 666435652385423360 1 779377524342161408 1 716080869887381504 1 696518437233913856 1 778990705243029504 1 704364645503647744 1 761292947749015552 1 885528943205470208 1 790337589677002753 1 674024893172875264 1 775085132600442880 1 684940049151070208 1 674774481756377088 1 667138269671505920 1 853299958564483072 1 756288534030475264 1 675003128568291329 1 891087950875897856 1 670780561024270336 1 719704490224398336 1 858471635011153920 1 702217446468493312 1 711998809858043904 1 688804835492233216 1 871102520638267392 1 852226086759018497 1 685943807276412928 1 799308762079035393 1 866334964761202691 1 852912242202992640 1 729854734790754305 1 741303864243200000 1 718613305783398402 1 674646392044941312 1 872967104147763200 1 748977405889503236 1 886267009285017600 1 753375668877008896 1 805958939288408065 1 800188575492947969 1 707776935007539200 1 824775126675836928 1 823269594223824897 1 690597161306841088 1 873213775632977920 1 679527802031484928 1 684097758874210310 1 785639753186217984 1 720340705894408192 1 672205392827572224 1 668113020489474048 1 697995514407682048 1 668967877119254528 1 676603393314578432 1 688547210804498433 1 759197388317847553 1 867072653475098625 1 852189679701164033 1 742465774154047488 1 668537837512433665 1 747648653817413632 1 728035342121635841 1 673363615379013632 1 873580283840344065 1 882992080364220416 1 684200372118904832 1 760153949710192640 1 817056546584727552 1 733109485275860992 1 676776431406465024 1 673680198160809984 1 671533943490011136 1 862831371563274240 1 676811746707918848 1 867774946302451713 1 717537687239008257 1 679872969355714560 1 765371061932261376 1 804475857670639616 1 668625577880875008 1 809808892968534016 1 701570477911896070 1 793500921481273345 1 831939777352105988 1 695629776980148225 1 815966073409433600 1 675522403582218240 1 673887867907739649 1 789137962068021249 1 845812042753855489 1 740214038584557568 1 709901256215666688 1 847842811428974592 1 685906723014619143 1 737310737551491075 1 704134088924532736 1 746906459439529985 1 842846295480000512 1 759846353224826880 1 835246439529840640 1 717009362452090881 1 846874817362120707 1 673345638550134785 1 746757706116112384 1 750381685133418496 1 812781120811126785 1 674743008475090944 1 678380236862578688 1 707315916783140866 1 687102708889812993 1 783085703974514689 1 789314372632018944 1 692187005137076224 1 671744970634719232 1 817777686764523521 1 697242256848379904 1 791406955684368384 1 676916996760600576 1 765669560888528897 1 671357843010908160 1 795400264262053889 1 801538201127157760 1 668902994700836864 1 846153765933735936 1 710658690886586372 1 672466075045466113 1 724046343203856385 1 697270446429966336 1 758474966123810816 1 863553081350529029 1 749996283729883136 1 756998049151549440 1 725842289046749185 1 750101899009982464 1 742150209887731712 1 768855141948723200 1 669037058363662336 1 668614819948453888 1 813081950185472002 1 711363825979756544 1 876484053909872640 1 864873206498414592 1 672984142909456390 1 707420581654872064 1 722974582966214656 1 677673981332312066 1 678255464182861824 1 766793450729734144 1 870063196459192321 1 669993076832759809 1 810984652412424192 1 670374371102445568 1 666644823164719104 1 877316821321428993 1 743980027717509120 1 674737130913071104 1 683462770029932544 1 705066031337840642 1 697255105972801536 1 667090893657276420 1 813187593374461952 1 670427002554466305 1 668826086256599040 1 760656994973933572 1 794205286408003585 1 881268444196462592 1 793180763617361921 1 676575501977128964 1 666407126856765440 1 672970152493887488 1 667832474953625600 1 832397543355072512 1 688211956440801280 1 857393404942143489 1 686618349602762752 1 698907974262222848 1 780459368902959104 1 753039830821511168 1 710609963652087808 1 673715861853720576 1 667453023279554560 1 688898160958271489 1 700847567345688576 1 856288084350160898 1 826240494070030336 1 667782464991965184 1 673709992831262724 1 669353438988365824 1 673716320723169284 1 667405339315146752 1 679001094530465792 1 707387676719185920 1 738156290900254721 1 781661882474196992 1 683391852557561860 1 666411507551481857 1 682406705142087680 1 684588130326986752 1 682389078323662849 1 693642232151285760 1 738537504001953792 1 781163403222056960 1 728751179681943552 1 679844490799091713 1 679158373988876288 1 793226087023144960 1 703611486317502464 1 707059547140169728 1 668567822092664832 1 674082852460433408 1 668631377374486528 1 728046963732717569 1 673359818736984064 1 827653905312006145 1 793135492858580992 1 678278586130948096 1 884247878851493888 1 876120275196170240 1 723912936180330496 1 853760880890318849 1 698635131305795584 1 788908386943430656 1 724405726123311104 1 879674319642796034 1 673317986296586240 1 700796979434098688 1 712309440758808576 1 740995100998766593 1 859196978902773760 1 750086836815486976 1 841077006473256960 1 848324959059550208 1 675534494439489536 1 704491224099647488 1 751251247299190784 1 668480044826800133 1 786963064373534720 1 693267061318012928 1 675147105808306176 1 889278841981685760 1 668496999348633600 1 708853462201716736 1 696886256886657024 1 679729593985699840 1 759557299618865152 1 784183165795655680 1 674606911342424069 1 833124694597443584 1 818646164899774465 1 689255633275777024 1 677662372920729601 1 777885040357281792 1 825876512159186944 1 826615380357632002 1 735991953473572864 1 675111688094527488 1 777621514455814149 1 681339448655802368 1 798925684722855936 1 811627233043480576 1 711652651650457602 1 699072405256409088 1 671874878652489728 1 672877615439593473 1 683142553609318400 1 668989615043424256 1 778764940568104960 1 670361874861563904 1 667793409583771648 1 675372240448454658 1 666430724426358785 1 797236660651966464 1 697630435728322560 1 854482394044301312 1 720059472081784833 1 838561493054533637 1 667495797102141441 1 689661964914655233 1 749317047558017024 1 676819651066732545 1 739606147276148736 1 753398408988139520 1 746818907684614144 1 751950017322246144 1 730211855403241472 1 674805413498527744 1 707610948723478529 1 859074603037188101 1 751598357617971201 1 671355857343524864 1 707377100785885184 1 726887082820554753 1 702539513671897089 1 788178268662984705 1 675109292475830276 1 670040295598354432 1 668297328638447616 1 687480748861947905 1 694183373896572928 1 679862121895714818 1 670803562457407488 1 805207613751304193 1 679511351870550016 1 846514051647705089 1 793614319594401792 1 690021994562220032 1 778748913645780993 1 832369877331693569 1 668645506898350081 1 815639385530101762 1 739623569819336705 1 667044094246576128 1 674739953134403584 1 680583894916304897 1 888804989199671297 1 667192066997374976 1 791784077045166082 1 765395769549590528 1 674436901579923456 1 672139350159835138 1 778027034220126208 1 840268004936019968 1 670995969505435648 1 682003177596559360 1 819227688460238848 1 732005617171337216 1 826598799820865537 1 757725642876129280 1 675710890956750848 1 690989312272396288 1 718460005985447936 1 829501995190984704 1 749774190421639168 1 666362758909284353 1 666071193221509120 1 713411074226274305 1 679722016581222400 1 686606069955735556 1 824663926340194305 1 672614745925664768 1 698178924120031232 1 692828166163931137 1 671154572044468225 1 798697898615730177 1 817415592588222464 1 827600520311402496 1 677187300187611136 1 667509364010450944 1 815390420867969024 1 717841801130979328 1 673612854080196609 1 780476555013349377 1 686386521809772549 1 693280720173801472 1 808001312164028416 1 736225175608430592 1 671134062904504320 1 775842724423557120 1 806629075125202948 1 882627270321602560 1 676263575653122048 1 838201503651401729 1 810657578271330305 1 667070482143944705 1 683834909291606017 1 730573383004487680 1 674793399141146624 1 666701168228331520 1 816816676327063552 1 675145476954566656 1 670003130994700288 1 831926988323639298 1 786363235746385920 1 830097400375152640 1 669214165781868544 1 675497103322386432 1 834477809192075265 1 681340665377193984 1 818627210458333184 1 681320187870711809 1 693647888581312512 1 743895849529389061 1 766008592277377025 1 681654059175129088 1 687494652870668288 1 855851453814013952 1 668248472370458624 1 793962221541933056 1 844979544864018432 1 670764103623966721 1 821522889702862852 1 666102155909144576 1 708810915978854401 1 697990423684476929 1 759446261539934208 1 881536004380872706 1 675531475945709568 1 832682457690300417 1 875097192612077568 1 666049248165822465 1 878404777348136964 1 716802964044845056 1 758099635764359168 1 674318007229923329 1 823939628516474880 1 670069087419133954 1 840370681858686976 1 877736472329191424 1 716285507865542656 1 709449600415961088 1 680176173301628928 1 789986466051088384 1 756526248105566208 1 779834332596887552 1 671151324042559489 1 710153181850935296 1 803638050916102144 1 671538301157904385 1 884562892145688576 1 828408677031882754 1 768596291618299904 1 671486386088865792 1 833863086058651648 1 855818117272018944 1 871879754684805121 1 684926975086034944 1 733482008106668032 1 682429480204398592 1 757596066325864448 1 713919462244790272 1 887343217045368832 1 748699167502000129 1 715758151270801409 1 674372068062928900 1 666273097616637952 1 709158332880297985 1 738885046782832640 1 708149363256774660 1 754856583969079297 1 819015337530290176 1 673352124999274496 1 671504605491109889 1 694329668942569472 1 717790033953034240 1 747204161125646336 1 670676092097810432 1 675146535592706048 1 666649482315059201 1 699423671849451520 1 828708714936930305 1 755110668769038337 1 689835978131935233 1 789530877013393408 1 699036661657767936 1 817502432452313088 1 666421158376562688 1 718246886998687744 1 677573743309385728 1 693582294167244802 1 683849932751646720 1 794983741416415232 1 821407182352777218 1 775350846108426240 1 704819833553219584 1 671855973984772097 1 784517518371221505 1 696713835009417216 1 800859414831898624 1 669625907762618368 1 670061506722140161 1 796865951799083009 1 680934982542561280 1 670435821946826752 1 667176164155375616 1 670037189829525505 1 712092745624633345 1 759447681597108224 1 694356675654983680 1 677644091929329666 1 687460506001633280 1 669375718304980992 1 666033412701032449 1 847971574464610304 1 858843525470990336 1 709207347839836162 1 666050758794694657 1 804026241225523202 1 806242860592926720 1 695095422348574720 1 715009755312439296 1 667915453470232577 1 681193455364796417 1 832088576586297345 1 680801747103793152 1 864197398364647424 1 667550882905632768 1 723688335806480385 1 715220193576927233 1 839990271299457024 1 685547936038666240 1 670823764196741120 1 700167517596164096 1 693095443459342336 1 800513324630806528 1 835574547218894849 1 671497587707535361 1 667773195014021121 1 680191257256136705 1 822872901745569793 1 671879137494245376 1 672828477930868736 1 771380798096281600 1 691090071332753408 1 696754882863349760 1 666804364988780544 1 799422933579902976 1 669363888236994561 1 761371037149827077 1 670832455012716544 1 854732716440526848 1 738184450748633089 1 698953797952008193 1 671347597085433856 1 668484198282485761 1 673656262056419329 1 698355670425473025 1 689999384604450816 1 669328503091937280 1 783695101801398276 1 793601777308463104 1 669926384437997569 1 741438259667034112 1 687096057537363968 1 774757898236878852 1 890971913173991426 1 791312159183634433 1 689154315265683456 1 874012996292530176 1 673919437611909120 1 748932637671223296 1 684122891630342144 1 693622659251335168 1 676593408224403456 1 832636094638288896 1 714258258790387713 1 672640509974827008 1 869227993411051520 1 744334592493166593 1 859851578198683649 1 673708611235921920 1 840728873075638272 1 740699697422163968 1 688116655151435777 1 738166403467907072 1 666073100786774016 1 856526610513747968 1 813812741911748608 1 667544320556335104 1 713900603437621249 1 674447403907457024 1 772877495989305348 1 687807801670897665 1 758854675097526272 1 692919143163629568 1 691459709405118465 1 699323444782047232 1 673662677122719744 1 688908934925697024 1 800855607700029440 1 836648853927522308 1 681231109724700672 1 855138241867124737 1 805932879469572096 1 668221241640230912 1 763183847194451968 1 847116187444137987 1 679405845277462528 1 799757965289017345 1 668256321989451776 1 778383385161035776 1 792773781206999040 1 667924896115245057 1 775364825476165632 1 821765923262631936 1 667517642048163840 1 822610361945911296 1 681679526984871937 1 856282028240666624 1 832215909146226688 1 820446719150292993 1 808501579447930884 1 773985732834758656 1 781251288990355457 1 766069199026450432 1 865359393868664832 1 675135153782571009 1 666063827256086533 1 770414278348247044 1 669006782128353280 1 700505138482569216 1 673580926094458881 1 742385895052087300 1 735635087207878657 1 697881462549430272 1 676101918813499392 1 673576835670777856 1 817120970343411712 1 750868782890057730 1 690735892932222976 1 674036086168010753 1 737322739594330112 1 668466899341221888 1 678389028614488064 1 771908950375665664 1 672256522047614977 1 886680336477933568 1 769335591808995329 1 668932921458302977 1 865006731092295680 1 699446877801091073 1 798701998996647937 1 750429297815552001 1 751132876104687617 1 704847917308362754 1 670290420111441920 1 680130881361686529 1 725458796924002305 1 677716515794329600 1 807621403335917568 1 700062718104104960 1 667728196545200128 1 680070545539371008 1 678424312106393600 1 781655249211752448 1 805826884734976000 1 674038233588723717 1 885167619883638784 1 807059379405148160 1 727644517743104000 1 855857698524602368 1 887101392804085760 1 748692773788876800 1 801285448605831168 1 672968025906282496 1 747594051852075008 1 880872448815771648 1 785170936622350336 1 675853064436391936 1 734787690684657664 1 672264251789176834 1 878057613040115712 1 672169685991993344 1 715200624753819648 1 729823566028484608 1 667886921285246976 1 752519690950500352 1 674410619106390016 1 687312378585812992 1 800388270626521089 1 673707060090052608 1 739932936087216128 1 772152991789019136 1 676146341966438401 1 757393109802180609 1 749036806121881602 1 722613351520608256 1 759099523532779520 1 874680097055178752 1 668992363537309700 1 702276748847800320 1 747963614829678593 1 760190180481531904 1 752660715232722944 1 747242308580548608 1 683742671509258241 1 675501075957489664 1 710272297844797440 1 667443425659232256 1 728409960103686147 1 667549055577362432 1 857263160327368704 1 705970349788291072 1 853639147608842240 1 843981021012017153 1 674638615994089473 1 680959110691590145 1 784431430411685888 1 683030066213818368 1 667502640335572993 1 759943073749200896 1 770093767776997377 1 719551379208073216 1 673688752737402881 1 679828447187857408 1 699060279947165696 1 672475084225949696 1 858107933456039936 1 879130579576475649 1 686760001961103360 1 673213039743795200 1 687732144991551489 1 714485234495041536 1 799297110730567681 1 866094527597207552 1 670786190031921152 1 670452855871037440 1 669000397445533696 1 816062466425819140 1 668623201287675904 1 675113801096802304 1 715928423106027520 1 724983749226668032 1 801127390143516673 1 708469915515297792 1 784057939640352768 1 790227638568808452 1 667902449697558528 1 670822709593571328 1 773191612633579521 1 758355060040593408 1 689877686181715968 1 671768281401958400 1 744234799360020481 1 716439118184652801 1 675888385639251968 1 860184849394610176 1 767122157629476866 1 798682547630837760 1 874434818259525634 1 675349384339542016 1 787810552592695296 1 798665375516884993 1 677895101218201600 1 672160042234327040 1 829011960981237760 1 666437273139982337 1 676821958043033607 1 758467244762497024 1 667885044254572545 1 668975677807423489 1 788039637453406209 1 823699002998870016 1 682662431982772225 1 699779630832685056 1 669661792646373376 1 860924035999428608 1 818614493328580609 1 800459316964663297 1 789903600034189313 1 739238157791694849 1 691756958957883396 1 884162670584377345 1 772114945936949249 1 732726085725589504 1 676613908052996102 1 777641927919427584 1 891815181378084864 1 809448704142938112 1 671561002136281088 1 670408998013820928 1 793210959003287553 1 708119489313951744 1 852936405516943360 1 684567543613382656 1 670727704916926465 1 831650051525054464 1 668852170888998912 1 666983947667116034 1 816450570814898180 1 684594889858887680 1 668815180734689280 1 798576900688019456 1 674255168825880576 1 765222098633691136 1 752309394570878976 1 833479644947025920 1 669942763794931712 1 710844581445812225 1 820690176645140481 1 809220051211603969 1 673148804208660480 1 879008229531029506 1 675707330206547968 1 776088319444877312 1 828046555563323392 1 757741869644341248 1 808733504066486276 1 677269281705472000 1 669684865554620416 1 747512671126323200 1 788150585577050112 1 668171859951755264 1 757729163776290825 1 668286279830867968 1 689599056876867584 1 821153421864615936 1 794355576146903043 1 823581115634085888 1 711694788429553666 1 688789766343622656 1 666353288456101888 1 671866342182637568 1 728653952833728512 1 703356393781329922 1 849336543269576704 1 707297311098011648 1 875021211251597312 1 830583320585068544 1 789628658055020548 1 791774931465953280 1 797545162159308800 1 735274964362878976 1 850145622816686080 1 884925521741709313 1 676582956622721024 1 783391753726550016 1 696900204696625153 1 686749460672679938 1 840698636975636481 1 671518598289059840 1 798705661114773508 1 812709060537683968 1 764259802650378240 1 682808988178739200 1 809084759137812480 1 872486979161796608 1 706346369204748288 1 860981674716409858 1 828770345708580865 1 679148763231985668 1 670420569653809152 1 692905862751522816 1 674075285688614912 1 667437278097252352 1 882268110199369728 1 727175381690781696 1 684830982659280897 1 666447344410484738 1 839290600511926273 1 886983233522544640 1 678410210315247616 1 680609293079592961 1 826958653328592898 1 675153376133427200 1 781308096455073793 1 700002074055016451 1 886736880519319552 1 860524505164394496 1 841680585030541313 1 672622327801233409 1 675149409102012420 1 698342080612007937 1 877201837425926144 1 774639387460112384 1 670792680469889025 1 766864461642756096 1 678446151570427904 1 868880397819494401 1 844973813909606400 1 741743634094141440 1 674045139690631169 1 690374419777196032 1 892420643555336193 1 855459453768019968 1 670303360680108032 1 829141528400556032 1 857746408056729600 1 676089483918516224 1 771500966810099713 1 699691744225525762 1 681261549936340994 1 786709082849828864 1 673636718965334016 1 668154635664932864 1 815736392542261248 1 666454714377183233 1 728760639972315136 1 705591895322394625 1 687841446767013888 1 845397057150107648 1 793271401113350145 1 730924654643314689 1 671390180817915904 1 759793422261743616 1 752932432744185856 1 670055038660800512 1 676617503762681856 1 678969228704284672 1 685198997565345792 1 680100725817409536 1 882762694511734784 1 669354382627049472 1 839239871831150596 1 670319130621435904 1 668620235289837568 1 704113298707505153 1 813800681631023104 1 813096984823349248 1 667455448082227200 1 667152164079423490 1 863471782782697472 1 786286427768250368 1 677918531514703872 1 709409458133323776 1 822244816520155136 1 670811965569282048 1 782722598790725632 1 841314665196081154 1 820837357901512704 1 672834301050937345 1 757400162377592832 1 807010152071229440 1 786233965241827333 1 674752233200820224 1 675878199931371520 1 668587383441514497 1 726935089318363137 1 678341075375947776 1 803773340896923648 1 707411934438625280 1 813202720496779264 1 671550332464455680 1 708845821941387268 1 687664829264453632 1 690690673629138944 1 826115272272650244 1 750117059602808832 1 672482722825261057 1 785264754247995392 1 808838249661788160 1 688519176466644993 1 855245323840757760 1 776819012571455488 1 666058600524156928 1 859607811541651456 1 769940425801170949 1 666996132027977728 1 816014286006976512 1 854365224396361728 1 811985624773361665 1 862457590147678208 1 870374049280663552 1 701805642395348998 1 792394556390137856 1 667766675769573376 1 819004803107983360 1 704761120771465216 1 746542875601690625 1 859924526012018688 1 743253157753532416 1 870726314365509632 1 670046952931721218 1 673711475735838725 1 702932127499816960 1 685973236358713344 1 747651430853525504 1 860276583193509888 1 669753178989142016 1 881633300179243008 1 666094000022159362 1 693942351086120961 1 796080075804475393 1 675849018447167488 1 852553447878664193 1 672884426393653248 1 682032003584274432 1 670421925039075328 1 786036967502913536 1 823719002937630720 1 745433870967832576 1 666837028449972224 1 668872652652679168 1 781955203444699136 1 700890391244103680 1 673583129559498752 1 680145970311643136 1 756939218950160384 1 679111216690831360 1 879415818425184262 1 763837565564780549 1 671511350426865664 1 771171053431250945 1 753420520834629632 1 666029285002620928 1 671159727754231808 1 700029284593901568 1 812372279581671427 1 763167063695355904 1 666104133288665088 1 752682090207055872 1 685307451701334016 1 720043174954147842 1 866450705531457537 1 691675652215414786 1 747439450712596480 1 890006608113172480 1 668226093875376128 1 670385711116361728 1 677314812125323265 1 828011680017821696 1 702684942141153280 1 680836378243002368 1 695314793360662529 1 673343217010679808 1 736392552031657984 1 822647212903690241 1 813130366689148928 1 680115823365742593 1 707014260413456384 1 715704790270025728 1 726224900189511680 1 682393905736888321 1 847962785489326080 1 714631576617938945 1 691321916024623104 1 704499785726889984 1 780092040432480260 1 708738143638450176 1 775729183532220416 1 862722525377298433 1 666287406224695296 1 672604026190569472 1 764857477905154048 1 674330906434379776 1 697943111201378304 1 805823200554876929 1 703268521220972544 1 822859134160621569 1 671141549288370177 1 677530072887205888 1 819006400881917954 1 793286476301799424 1 762316489655476224 1 801167903437357056 1 854120357044912130 1 755955933503782912 1 676121918416756736 1 674468880899788800 1 685268753634967552 1 668655139528511488 1 667062181243039745 1 675781562965868544 1 771102124360998913 1 670668383499735048 1 728986383096946689 1 695051054296211456 1 699413908797464576 1 713909862279876608 1 706310011488698368 1 751205363882532864 1 694206574471057408 1 693590843962331137 1 820078625395449857 1 684902183876321280 1 689289219123089408 1 783821107061198850 1 870656317836468226 1 689280876073582592 1 888917238123831296 1 681610798867845120 1 822489057087389700 1 737800304142471168 1 668544745690562560 1 823333489516937216 1 773547596996571136 1 771014301343748096 1 779124354206535695 1 703425003149250560 1 806620845233815552 1 674644256330530816 1 808344865868283904 1 761750502866649088 1 857989990357356544 1 710588934686908417 1 691483041324204033 1 709198395643068416 1 666739327293083650 1 686050296934563840 1 717047459982213120 1 709179584944730112 1 838952994649550848 1 720389942216527872 1 699788877217865730 1 673700254269775872 1 707969809498152960 1 863062471531167744 1 676533798876651520 1 783334639985389568 1 832645525019123713 1 789280767834746880 1 840632337062862849 1 790723298204217344 1 692752401762250755 1 669583744538451968 1 666082916733198337 1 674632714662858753 1 868639477480148993 1 760641137271070720 1 866686824827068416 1 727286334147182592 1 701214700881756160 1 690728923253055490 1 680161097740095489 1 883117836046086144 1 672272411274932228 1 872122724285648897 1 670428280563085312 1 810284430598270976 1 675489971617296384 1 701601587219795968 1 863432100342583297 1 678643457146150913 1 888078434458587136 1 670797304698376195 1 696405997980676096 1 818307523543449600 1 821421320206483457 1 812466873996607488 1 758740312047005698 1 813944609378369540 1 843235543001513987 1 674262580978937856 1 671166507850801152 1 830956169170665475 1 694352839993344000 1 796563435802726400 1 818588835076603904 1 820013781606658049 1 742423170473463808 1 701952816642965504 1 666293911632134144 1 680473011644985345 1 716730379797970944 1 674790488185167872 1 686683045143953408 1 761599872357261312 1 829861396166877184 1 731156023742988288 1 708479650088034305 1 670691627984359425 1 726828223124897792 1 672609152938721280 1 674416750885273600 1 708356463048204288 1 695064344191721472 1 694669722378485760 1 880935762899988482 1 678767140346941444 1 675822767435051008 1 869702957897576449 1 670815497391357952 1 870804317367881728 1 762035686371364864 1 670434127938719744 1 878316110768087041 1 754449512966619136 1 820314633777061888 1 670833812859932673 1 674053186244734976 1 674265582246694913 1 824325613288833024 1 802624713319034886 1 868552278524837888 1 677961670166224897 1 668627278264475648 1 682303737705140231 1 668142349051129856 1 707021089608753152 1 849412302885593088 1 682788441537560576 1 746726898085036033 1 704347321748819968 1 673697980713705472 1 887517139158093824 1 671485057807351808 1 687124485711986689 1 688179443353796608 1 749981277374128128 1 873337748698140672 1 686730991906516992 1 724771698126512129 1 752568224206688256 1 696744641916489729 1 799063482566066176 1 710117014656950272 1 690607260360429569 1 733828123016450049 1 863907417377173506 1 800751577355128832 1 812503143955202048 1 670679630144274432 1 675354435921575936 1 685663452032069632 1 842163532590374912 1 813910438903693312 1 768909767477751808 1 695409464418041856 1 713177543487135744 1 834458053273591808 1 707741517457260545 1 690360449368465409 1 797971864723324932 1 697516214579523584 1 744709971296780288 1 674800520222154752 1 718631497683582976 1 675706639471788032 1 846139713627017216 1 670411370698022913 1 669683899023405056 1 868622495443632128 1 871032628920680449 1 796177847564038144 1 766693177336135680 1 750719632563142656 1 724049859469295616 1 687317306314240000 1 847617282490613760 1 832998151111966721 1 749417653287129088 1 796387464403357696 1 780800785462489090 1 675432746517426176 1 667861340749471744 1 705223444686888960 1 674670581682434048 1 847157206088847362 1 673240798075449344 1 718540630683709445 1 703041949650034688 1 798585098161549313 1 729113531270991872 1 826204788643753985 1 703631701117943808 1 756275833623502848 1 704871453724954624 1 667546741521195010 1 676470639084101634 1 828650029636317184 1 727155742655025152 1 669970042633789440 1 743222593470234624 1 711732680602345472 1 719367763014393856 1 834086379323871233 1 673350198937153538 1 719332531645071360 1 676942428000112642 1 705786532653883392 1 670778058496974848 1 681242418453299201 1 738402415918125056 1 708109389455101952 1 841439858740625411 1 811744202451197953 1 672995267319328768 1 697482927769255936 1 819238181065359361 1 890240255349198849 1 666345417576210432 1 687704180304273409 1 685667379192414208 1 667012601033924608 1 848212111729840128 1 667491009379606528 1 680206703334408192 1 747461612269887489 1 681297372102656000 1 676098748976615425 1 890609185150312448 1 675047298674663426 1 670073503555706880 1 832273440279240704 1 679854723806179328 1 835264098648616962 1 845098359547420673 1 674014384960745472 1 877556246731214848 1 676864501615042560 1 674999807681908736 1 745789745784041472 1 678764513869611008 1 819924195358416896 1 707738799544082433 1 705898680587526145 1 852311364735569921 1 735137028879360001 1 743609206067040256 1 757354760399941633 1 667065535570550784 1 667188689915760640 1 739844404073074688 1 686286779679375361 1 674754018082705410 1 671763349865160704 1 667435689202614272 1 672538107540070400 1 834931633769889797 1 688828561667567616 1 846505985330044928 1 692417313023332352 1 676496375194980353 1 760252756032651264 1 866720684873056260 1 682697186228989953 1 685169283572338688 1 770069151037685760 1 791672322847637504 1 675898130735476737 1 770772759874076672 1 843604394117681152 1 836989968035819520 1 666099513787052032 1 713175907180089344 1 751456908746354688 1 683515932363329536 1 683498322573824003 1 851591660324737024 1 790581949425475584 1 679047485189439488 1 702671118226825216 1 883838122936631299 1 712717840512598017 1 749064354620928000 1 683098815881154561 1 679530280114372609 1 692158366030913536 1 745422732645535745 1 736010884653420544 1 670338931251150849 1 672068090318987265 1 838150277551247360 1 775733305207554048 1 750506206503038976 1 763956972077010945 1 870308999962521604 1 720775346191278080 1 879492040517615616 1 785927819176054784 1 834209720923721728 1 857062103051644929 1 825026590719483904 1 758405701903519748 1 668986018524233728 1 690938899477221376 1 678800283649069056 1 681579835668455424 1 693155686491000832 1 667911425562669056 1 816829038950027264 1 886054160059072513 1 683773439333797890 1 674291837063053312 1 837482249356513284 1 767500508068192258 1 669015743032369152 1 773922284943896577 1 748307329658011649 1 783347506784731136 1 715360349751484417 1 666817836334096384 1 794926597468000259 1 673705679337693185 1 673342308415348736 1 754482103782404096 1 700151421916807169 1 Name: tweet_id, dtype: int64
twitter_archive_website.favorite_count.value_counts()
0 163 1355 4 1058 3 318 3 1887 3 1382 3 553 3 3381 3 7266 3 1614 3 2164 3 364 3 3275 3 1750 3 316 2 494 2 2374 2 2055 2 1586 2 470 2 9529 2 11795 2 478 2 2125 2 3240 2 500 2 3076 2 2884 2 2454 2 423 2 2285 2 532 2 1387 2 1034 2 4997 2 1472 2 1363 2 2317 2 420 2 1682 2 2332 2 2301 2 1639 2 241 2 2290 2 243 2 408 2 252 2 3672 2 427 2 1671 2 4396 2 325 2 2346 2 294 2 1634 2 2433 2 10544 2 445 2 175 2 406 2 2252 2 596 2 1565 2 1448 2 2619 2 5046 2 4785 2 695 2 723 2 1294 2 1506 2 6745 2 3778 2 920 2 15483 2 11198 2 2996 2 3819 2 952 2 2895 2 3177 2 5017 2 915 2 1515 2 907 2 3155 2 895 2 996 2 3057 2 1014 2 1068 2 13350 2 1212 2 2726 2 4547 2 3232 2 2220 2 1434 2 3473 2 2610 2 2665 2 2679 2 531 2 4234 2 2723 2 3262 2 2727 2 549 2 569 2 3104 2 2245 2 3363 2 2420 2 1147 2 762 2 1121 2 2823 2 1264 2 1262 2 3146 2 1075 2 677 2 5835 2 1056 2 3845 2 2099 2 4151 2 311 2 1860 2 1943 2 2196 2 1208 2 225 2 233 2 20232 2 1877 2 6083 2 174 2 2076 2 1873 2 136 2 6047 2 2160 2 111 2 138 2 1392 2 2205 2 424 2 2202 2 2046 2 1884 2 8193 2 2397 2 3923 2 3815 2 4035 2 22382 1 24429 1 3425 1 3317 1 1270 1 1372 1 31991 1 32976 1 161 1 9572 1 1898 1 3323 1 1370 1 35247 1 3941 1 3327 1 3415 1 1280 1 1284 1 5354 1 3389 1 7098 1 5352 1 7373 1 2409 1 3279 1 437 1 19667 1 25814 1 1240 1 15721 1 34010 1 7387 1 5972 1 4380 1 5340 1 15581 1 2807 1 25824 1 2404 1 5346 1 11493 1 20309 1 1366 1 3931 1 3939 1 10072 1 1316 1 9544 1 30562 1 1320 1 1882 1 3937 1 583 1 2193 1 270 1 5424 1 1419 1 5426 1 1493 1 7491 1 5430 1 3383 1 2630 1 1338 1 492 1 1644 1 2431 1 9546 1 8726 1 5388 1 1333 1 50446 1 40207 1 1892 1 5392 1 13586 1 2641 1 5398 1 116048 1 1304 1 23755 1 5402 1 7451 1 20597 1 7453 1 1358 1 11551 1 3811 1 6008 1 3271 1 27852 1 5192 1 1098 1 3149 1 9298 1 3993 1 5204 1 1944 1 3157 1 10134 1 11353 1 182 1 7263 1 414 1 31843 1 1940 1 1124 1 11365 1 8028 1 12261 1 5228 1 1106 1 1306 1 6028 1 840 1 5190 1 12195 1 3127 1 1966 1 17444 1 460 1 4013 1 1821 1 3113 1 1066 1 1070 1 7219 1 3293 1 1080 1 11333 1 7225 1 5093 1 3131 1 25660 1 13374 1 3135 1 1960 1 25664 1 24485 1 3139 1 6794 1 6024 1 4570 1 15543 1 3243 1 1198 1 3247 1 17584 1 49743 1 1918 1 1202 1 1204 1 8061 1 1206 1 8875 1 3239 1 29882 1 8059 1 34682 1 23919 1 10102 1 7357 1 1214 1 1216 1 3267 1 3367 1 5290 1 9220 1 31861 1 1922 1 1142 1 3063 1 7287 1 1924 1 5246 1 1256 1 13440 1 28547 1 1154 1 4226 1 46220 1 9378 1 13454 1 591 1 3215 1 3219 1 1136 1 17556 1 5272 1 27805 1 1048 1 19615 1 1388 1 3451 1 1699 1 1654 1 15973 1 5736 1 28265 1 5740 1 7953 1 3693 1 1806 1 7915 1 3047 1 5746 1 7801 1 2775 1 5754 1 5756 1 1666 1 1067 1 3719 1 20231 1 87812 1 9986 1 3841 1 5772 1 13924 1 13933 1 7537 1 3659 1 7737 1 1594 1 22078 1 28441 1 1816 1 15939 1 7749 1 3655 1 3863 1 1608 1 1814 1 745 1 2604 1 95 1 3485 1 4414 1 5716 1 11865 1 5722 1 1628 1 14100 1 1942 1 11917 1 9870 1 11919 1 3795 1 34490 1 16059 1 3825 1 5824 1 7372 1 12011 1 3783 1 5832 1 11981 1 14697 1 1748 1 2581 1 343 1 3799 1 3817 1 16089 1 2689 1 1768 1 3807 1 3813 1 3809 1 9954 1 5816 1 1782 1 24247 1 2521 1 733 1 2457 1 5901 1 35548 1 7833 1 22270 1 16027 1 694 1 1786 1 833 1 11939 1 8131 1 3749 1 36519 1 2133 1 1704 1 6422 1 3831 1 1708 1 3757 1 18096 1 3639 1 3637 1 36643 1 5554 1 3483 1 7581 1 7583 1 15779 1 3493 1 1446 1 32169 1 1452 1 1454 1 10054 1 3507 1 1478 1 15797 1 1856 1 634 1 1481 1 3515 1 3517 1 17854 1 7615 1 18060 1 1474 1 20295 1 1432 1 6015 1 42824 1 3443 1 17780 1 1398 1 17912 1 7281 1 3449 1 17786 1 1764 1 979 1 7549 1 120190 1 5504 1 1874 1 5964 1 15745 1 21890 1 3459 1 3071 1 390 1 15753 1 25994 1 3523 1 4067 1 1584 1 3877 1 3591 1 375 1 32271 1 3601 1 7981 1 1836 1 26132 1 7701 1 1832 1 3609 1 13852 1 1850 1 28189 1 26142 1 13856 1 5668 1 15909 1 26152 1 2866 1 26154 1 11819 1 4492 1 7685 1 6705 1 1838 1 3579 1 6282 1 1848 1 1842 1 1484 1 1486 1 3535 1 19579 1 2557 1 15829 1 1496 1 1502 1 284 1 26082 1 3555 1 972 1 7659 1 24045 1 3567 1 7985 1 3569 1 30200 1 7649 1 1720 1 3514 1 37116 1 7821 1 18761 1 8522 1 43339 1 2381 1 2935 1 6479 1 4432 1 12628 1 2389 1 8536 1 20826 1 16732 1 10589 1 21434 1 354 1 6499 1 356 1 2405 1 26983 1 10601 1 362 1 2411 1 2413 1 372 1 2421 1 2423 1 45380 1 7498 1 2504 1 5923 1 4350 1 258 1 12550 1 10503 1 266 1 268 1 4366 1 2323 1 6423 1 4376 1 282 1 114972 1 8482 1 293 1 2341 1 12584 1 298 1 16688 1 4447 1 2355 1 24884 1 6453 1 2359 1 314 1 2498 1 8510 1 2147 1 2425 1 8574 1 10719 1 12744 1 643 1 2509 1 464 1 2513 1 22644 1 2515 1 2352 1 6617 1 16858 1 31195 1 3454 1 12039 1 2623 1 8674 1 14821 1 2553 1 31209 1 490 1 12780 1 6170 1 6641 1 504 1 20984 1 6649 1 1325 1 2499 1 444 1 6527 1 6557 1 384 1 2435 1 4486 1 31113 1 22923 1 31117 1 2447 1 1086 1 8596 1 8600 1 6553 1 412 1 24990 1 6583 1 7921 1 416 1 2465 1 4518 1 74152 1 2475 1 6573 1 39343 1 434 1 2236 1 4532 1 2756 1 6397 1 4340 1 23583 1 16624 1 232 1 70 1 5845 1 599 1 6219 1 16460 1 18509 1 12366 1 2127 1 2131 1 18517 1 2135 1 16472 1 96 1 30817 1 98 1 22627 1 100 1 2149 1 4200 1 106 1 2157 1 12398 1 2159 1 112 1 114 1 116 1 798 1 14401 1 8256 1 10875 1 4098 1 26627 1 6149 1 2266 1 18439 1 1237 1 6155 1 4108 1 7464 1 4110 1 10255 1 2065 1 2071 1 62 1 16408 1 6169 1 2083 1 4132 1 4138 1 962 1 26673 1 4148 1 6199 1 36922 1 6519 1 638 1 1221 1 22647 1 8312 1 14549 1 26809 1 190 1 194 1 870 1 9448 1 198 1 200 1 4459 1 14541 1 20688 1 10449 1 210 1 14551 1 1324 1 216 1 28890 1 47323 1 220 1 22749 1 4318 1 6369 1 226 1 4326 1 8424 1 234 1 6379 1 152 1 4276 1 4902 1 4248 1 124 1 2173 1 6273 1 12418 1 6281 1 4236 1 142 1 8336 1 10385 1 1587 1 2195 1 6295 1 6299 1 2227 1 156 1 4254 1 160 1 1019 1 12452 1 4114 1 6478 1 1735 1 6313 1 6317 1 10415 1 2225 1 2555 1 8700 1 34258 1 2793 1 17220 1 838 1 13128 1 15177 1 2720 1 31563 1 2461 1 29528 1 471 1 7003 1 74588 1 2909 1 3861 1 866 1 32779 1 5304 1 4968 1 19305 1 2923 1 876 1 2929 1 9074 1 2931 1 884 1 2933 1 7031 1 19323 1 6975 1 12691 1 21308 1 2845 1 2809 1 2811 1 4860 1 11009 1 776 1 6923 1 780 1 11021 1 784 1 2833 1 6935 1 21272 1 21278 1 33594 1 800 1 2849 1 21286 1 45864 1 25386 1 4908 1 2861 1 4910 1 6959 1 818 1 820 1 1925 1 15229 1 2945 1 842 1 11263 1 35805 1 3039 1 992 1 3041 1 11235 1 11239 1 719 1 439 1 7159 1 3065 1 7163 1 3069 1 44033 1 984 1 1026 1 3374 1 5124 1 1032 1 25610 1 1038 1 3087 1 5138 1 9236 1 3095 1 5144 1 13342 1 988 1 31550 1 23429 1 2985 1 2953 1 5002 1 11149 1 914 1 3390 1 918 1 2967 1 2969 1 5018 1 41888 1 930 1 932 1 5034 1 3021 1 2993 1 2997 1 19385 1 38345 1 792 1 3009 1 9154 1 964 1 23493 1 5062 1 3015 1 5068 1 760 1 15095 1 21238 1 600 1 25154 1 6723 1 1219 1 2629 1 582 1 2635 1 2637 1 8782 1 14929 1 12884 1 346 1 598 1 10841 1 8768 1 2651 1 2655 1 2657 1 8806 1 1309 1 8810 1 620 1 19053 1 622 1 2673 1 6771 1 6773 1 2625 1 6719 1 4730 1 12922 1 514 1 744 1 2940 1 12812 1 14861 1 6671 1 528 1 6673 1 4626 1 230 1 6677 1 78358 1 16922 1 574 1 542 1 2591 1 27177 1 8748 1 396 1 2004 1 1408 1 12850 1 4660 1 2617 1 330 1 19005 1 8824 1 23163 1 2805 1 17108 1 704 1 706 1 21188 1 21190 1 19143 1 4808 1 714 1 2763 1 2765 1 17102 1 4816 1 722 1 6871 1 2749 1 27355 1 2577 1 19165 1 19167 1 4832 1 6881 1 983 1 2916 1 25320 1 6889 1 746 1 756 1 4798 1 696 1 503 1 658 1 6783 1 619 1 6785 1 642 1 644 1 646 1 2695 1 4746 1 296 1 4750 1 2204 1 2705 1 2707 1 2743 1 19097 1 3636 1 2717 1 4766 1 12960 1 15013 1 7835 1 6827 1 2733 1 868 1 2739 1 4790 1 1153 1 1250 1 708 1 5387 1 36078 1 19700 1 7414 1 3322 1 1275 1 3324 1 3326 1 1279 1 44290 1 1283 1 9662 1 1287 1 1293 1 227 1 859 1 3346 1 3350 1 933 1 5405 1 7454 1 13603 1 5413 1 3368 1 2525 1 5419 1 19756 1 15596 1 1255 1 11566 1 1223 1 5297 1 13491 1 3252 1 3474 1 3256 1 70843 1 3260 1 13501 1 17599 1 9409 1 9411 1 9413 1 810 1 11494 1 11468 1 13525 1 4891 1 2620 1 21721 1 7386 1 1243 1 11484 1 5502 1 3294 1 3298 1 1253 1 5421 1 3376 1 1762 1 15772 1 13701 1 15750 1 3464 1 5515 1 5517 1 7568 1 7570 1 3302 1 1429 1 3478 1 732 1 11672 1 12312 1 3456 1 3494 1 1447 1 15786 1 1455 1 4789 1 13749 1 4240 1 19898 1 67003 1 32188 1 21949 1 7614 1 1411 1 11646 1 3378 1 3408 1 9981 1 2166 1 7478 1 20360 1 1339 1 15678 1 3392 1 9537 1 1351 1 3400 1 3402 1 23886 1 5201 1 19836 1 1365 1 3416 1 9561 1 1371 1 60764 1 13661 1 1381 1 13673 1 882 1 5493 1 19830 1 1401 1 3248 1 15534 1 7618 1 11336 1 9205 1 11254 1 13305 1 1276 1 5115 1 9213 1 23550 1 1025 1 8899 1 3080 1 9225 1 3088 1 19476 1 7152 1 3054 1 27672 1 1049 1 44058 1 3100 1 35870 1 9249 1 3108 1 1061 1 4500 1 1065 1 9259 1 1011 1 7150 1 2362 1 965 1 931 1 2980 1 12506 1 941 1 11182 1 2992 1 21961 1 955 1 8062 1 959 1 7104 1 3012 1 9159 1 31724 1 3016 1 5065 1 13261 1 25555 1 5079 1 33755 1 11228 1 989 1 3040 1 5091 1 13285 1 1001 1 1069 1 7218 1 21677 1 447 1 5235 1 3188 1 5239 1 1145 1 1149 1 3200 1 17537 1 25731 1 27780 1 1159 1 6159 1 3212 1 1167 1 1135 1 3607 1 11412 1 3224 1 1864 1 9371 1 11420 1 1181 1 7326 1 1183 1 9379 1 19624 1 3242 1 3184 1 1133 1 7220 1 3901 1 1077 1 3126 1 7224 1 1928 1 1083 1 19516 1 11330 1 1091 1 275 1 3142 1 17479 1 7240 1 29773 1 3178 1 19534 1 3152 1 9297 1 5205 1 290 1 5211 1 13405 1 5215 1 377 1 3172 1 1125 1 2424 1 1471 1 1475 1 5023 1 24380 1 4576 1 20256 1 1825 1 1503 1 1827 1 3876 1 3550 1 22317 1 26415 1 10033 1 351 1 1843 1 8000 1 3864 1 5955 1 3725 1 10055 1 5961 1 14157 1 12112 1 44892 1 1885 1 57182 1 14177 1 1893 1 2403 1 3868 1 3862 1 32626 1 7918 1 3794 1 7892 1 18133 1 20182 1 7896 1 1753 1 7898 1 30427 1 7902 1 20192 1 1761 1 24294 1 3824 1 5909 1 1777 1 20156 1 30453 1 1783 1 18173 1 1791 1 9985 1 3355 1 14093 1 4955 1 9999 1 7954 1 24432 1 1907 1 36556 1 4028 1 16316 1 1981 1 20414 1 10175 1 8128 1 34757 1 16326 1 10185 1 28618 1 6091 1 1997 1 2001 1 6101 1 4024 1 8156 1 2013 1 8158 1 2015 1 16314 1 10215 1 4074 1 10221 1 16366 1 10223 1 2037 1 4086 1 12218 1 18359 1 8052 1 8072 1 18293 1 3036 1 20346 1 1915 1 1150 1 1917 1 7885 1 18303 1 8064 1 3228 1 18307 1 18309 1 22417 1 34741 1 8084 1 1941 1 8090 1 3996 1 12190 1 13372 1 8102 1 22439 1 1967 1 8112 1 18355 1 12212 1 8846 1 9927 1 1477 1 3628 1 1553 1 1675 1 1321 1 7706 1 1569 1 1971 1 1571 1 20004 1 9765 1 5671 1 1490 1 1579 1 13869 1 9739 1 3630 1 17969 1 13875 1 3979 1 3204 1 15926 1 20024 1 1593 1 20028 1 5693 1 28877 1 1599 1 11790 1 3594 1 1603 1 12144 1 26057 1 3530 1 2017 1 1487 1 5585 1 32700 1 30165 1 3542 1 9687 1 30169 1 7642 1 7045 1 3552 1 9737 1 26081 1 9701 1 132587 1 15852 1 1064 1 3570 1 1461 1 1525 1 3574 1 1531 1 15876 1 1541 1 1601 1 4328 1 1731 1 3756 1 493 1 2233 1 18073 1 3740 1 34461 1 3742 1 1695 1 16032 1 11938 1 13987 1 1705 1 1707 1 5805 1 1021 1 5858 1 1713 1 3762 1 5811 1 3706 1 9915 1 32444 1 9917 1 7870 1 9919 1 1729 1 7874 1 4715 1 32402 1 3658 1 1643 1 1869 1 3664 1 15954 1 1621 1 1625 1 3676 1 2258 1 1631 1 3682 1 9827 1 28260 1 702 1 11884 1 7820 1 26221 1 3694 1 15984 1 11898 1 2407 1 1661 1 5761 1 1667 1 11910 1 1673 1 7818 1 22155 1 2976 1 3189 1 1978 1 2450 1 10518 1 287 1 3947 1 4389 1 2342 1 4391 1 297 1 299 1 6446 1 303 1 6450 1 307 1 52244 1 71954 1 2360 1 39226 1 315 1 2364 1 10558 1 12609 1 10733 1 7961 1 2376 1 329 1 24907 1 3433 1 4371 1 1152 1 2386 1 22760 1 341 1 18650 1 2268 1 221 1 2270 1 789 1 78049 1 8419 1 6372 1 3774 1 14566 1 4327 1 12103 1 2314 1 10474 1 10476 1 237 1 43246 1 2288 1 245 1 4349 1 10494 1 3037 1 2308 1 2792 1 26888 1 337 1 4435 1 10816 1 4525 1 8593 1 14738 1 7325 1 2452 1 3446 1 12695 1 8603 1 14754 1 4515 1 421 1 9389 1 4523 1 4529 1 6540 1 1317 1 435 1 10676 1 20917 1 3781 1 61879 1 2488 1 16825 1 29115 1 8639 1 14784 1 6594 1 4038 1 27018 1 2388 1 367 1 8533 1 12631 1 16733 1 2398 1 8543 1 32533 1 3382 1 12647 1 2408 1 482 1 15810 1 2412 1 2416 1 2440 1 411 1 2418 1 4079 1 373 1 6196 1 3001 1 8569 1 2428 1 385 1 1397 1 10628 1 4487 1 67798 1 209 1 222 1 2084 1 8203 1 10252 1 2064 1 4088 1 2066 1 2070 1 4121 1 26650 1 4125 1 10270 1 12319 1 2248 1 348 1 3806 1 14181 1 4141 1 2094 1 49 1 2100 1 20543 1 10304 1 16449 1 2114 1 86085 1 2118 1 53321 1 2058 1 2056 1 887 1 2018 1 155583 1 1990 1 735 1 715 1 419 1 4051 1 10196 1 4053 1 6104 1 30682 1 12255 1 30688 1 20451 1 28675 1 1568 1 2024 1 2026 1 2028 1 12271 1 2032 1 2034 1 4083 1 672 1 4093 1 18516 1 18432 1 2442 1 79 1 14542 1 22710 1 23668 1 2212 1 2214 1 8359 1 2216 1 2326 1 8365 1 22702 1 2226 1 4275 1 2228 1 181 1 183 1 75934 1 683 1 185 1 10428 1 4285 1 22718 1 4287 1 828 1 3276 1 24775 1 6344 1 724 1 20685 1 8353 1 157 1 28821 1 117 1 6226 1 12725 1 6234 1 2140 1 16479 1 10336 1 2148 1 103 1 9610 1 14444 1 4209 1 115 1 14454 1 2123 1 2168 1 121 1 2170 1 12907 1 12417 1 2182 1 4231 1 22666 1 45205 1 2200 1 10394 1 4251 1 14792 1 18890 1 2479 1 2808 1 6888 1 13033 1 5889 1 10988 1 749 1 15086 1 4849 1 2802 1 4851 1 6900 1 8949 1 4855 1 23290 1 8933 1 767 1 27392 1 769 1 4869 1 775 1 2824 1 21257 1 2826 1 779 1 3203 1 2830 1 463 1 8935 1 2788 1 13077 1 713 1 25259 1 3531 1 10928 1 691 1 693 1 2746 1 45757 1 2469 1 37571 1 15044 1 8901 1 711 1 64202 1 2784 1 4811 1 4815 1 10226 1 721 1 2770 1 2772 1 2776 1 26732 1 1581 1 21213 1 31454 1 8927 1 2834 1 2732 1 679 1 7336 1 871 1 2920 1 21353 1 2817 1 13163 1 1078 1 2926 1 11120 1 883 1 2934 1 9079 1 11132 1 2942 1 11108 1 158 1 7044 1 9093 1 903 1 10951 1 2954 1 7052 1 909 1 911 1 6877 1 913 1 2962 1 6224 1 7006 1 791 1 2874 1 8987 1 4042 1 2848 1 803 1 2852 1 4903 1 11052 1 15150 1 13105 1 11058 1 819 1 15160 1 2253 1 21339 1 4929 1 15170 1 839 1 718 1 627 1 9037 1 847 1 2896 1 6658 1 853 1 19286 1 13145 1 19112 1 673 1 10700 1 1523 1 10754 1 2564 1 517 1 1975 1 49671 1 21001 1 2572 1 6055 1 2576 1 4154 1 2578 1 4629 1 539 1 4607 1 8735 1 2592 1 545 1 2594 1 21027 1 2596 1 667 1 2221 1 23084 1 8716 1 12847 1 4657 1 6656 1 2558 1 563 1 485 1 4559 1 3249 1 465 1 2514 1 467 1 10749 1 2518 1 12759 1 2520 1 12763 1 39390 1 2530 1 2534 1 507 1 487 1 199 1 2130 1 495 1 2544 1 8050 1 2546 1 2548 1 20981 1 16887 1 18936 1 8697 1 10802 1 2612 1 6816 1 641 1 21103 1 625 1 25203 1 6772 1 629 1 2678 1 19066 1 49787 1 10599 1 2686 1 1108 1 6784 1 4739 1 4006 1 4743 1 8841 1 14986 1 4749 1 2706 1 659 1 2710 1 10425 1 25241 1 41627 1 10908 1 669 1 2144 1 2312 1 12350 1 4687 1 2614 1 19004 1 2622 1 14912 1 581 1 14918 1 4216 1 19997 1 2634 1 21067 1 35404 1 1693 1 2640 1 4711 1 595 1 14932 1 19030 1 8791 1 2648 1 4697 1 607 1 2656 1 2658 1 12899 1 2660 1 98917 1 2078 1 Name: favorite_count, dtype: int64
twitter_archive_website.retweet_count.value_counts()
225 6 143 5 341 4 224 4 615 4 734 4 919 4 555 4 551 4 968 4 691 4 457 4 519 4 53 4 560 4 621 4 1144 4 367 4 1460 4 1154 4 1358 4 456 4 518 4 42 4 474 4 492 3 756 3 1753 3 411 3 3598 3 223 3 460 3 530 3 243 3 668 3 357 3 275 3 618 3 2647 3 598 3 153 3 1023 3 993 3 546 3 377 3 1354 3 1097 3 1159 3 1045 3 1536 3 1325 3 3497 3 1842 3 1888 3 3419 3 1306 3 1224 3 2016 3 1189 3 128 3 25 3 735 3 55 3 870 3 83 3 1038 3 3083 3 1024 3 1020 3 93 3 974 3 2162 3 1115 3 123 3 934 3 932 3 2467 3 904 3 439 3 648 3 637 3 32 3 513 3 523 3 70 3 2357 3 3902 3 541 3 561 3 84 3 2894 3 749 3 706 3 913 3 116 3 613 3 212 3 629 3 657 3 879 3 713 3 52 3 76 3 503 3 809 3 2 3 803 3 380 3 495 3 2425 3 481 3 400 3 745 2 51 2 2792 2 49 2 9984 2 1774 2 956 2 41 2 39 2 5896 2 4831 2 5836 2 61 2 18146 2 2064 2 67 2 73 2 1190 2 6222 2 1732 2 79 2 731 2 6640 2 85 2 723 2 19186 2 2022 2 2054 2 1934 2 783 2 1846 2 5968 2 13855 2 1896 2 779 2 773 2 21285 2 1904 2 10020 2 805 2 1930 2 3989 2 2032 2 1954 2 1956 2 693 2 1826 2 1958 2 1153 2 6072 2 4029 2 1986 2 4851 2 10010 2 3881 2 709 2 447 2 675 2 521 2 331 2 509 2 6474 2 16709 2 323 2 321 2 4413 2 4443 2 2356 2 301 2 7823 2 295 2 4381 2 10518 2 507 2 4449 2 97 2 393 2 451 2 427 2 415 2 453 2 407 2 632 2 16841 2 355 2 2512 2 8583 2 465 2 467 2 375 2 471 2 527 2 273 2 269 2 125 2 603 2 605 2 151 2 147 2 611 2 131 2 6780 2 267 2 449 2 661 2 113 2 663 2 4203 2 99 2 171 2 387 2 587 2 177 2 191 2 193 2 569 2 197 2 199 2 287 2 215 2 221 2 563 2 231 2 2282 2 14572 2 239 2 499 2 2041 2 7791 2 442 2 4524 2 20904 2 418 2 410 2 10645 2 398 2 392 2 2439 2 382 2 374 2 366 2 360 2 352 2 346 2 434 2 344 2 336 2 2383 2 330 2 37298 2 446 2 6809 2 452 2 610 2 602 2 29262 2 588 2 14919 2 582 2 564 2 2605 2 554 2 550 2 2597 2 544 2 538 2 893 2 506 2 500 2 496 2 468 2 454 2 312 2 304 2 2699 2 162 2 4246 2 4224 2 122 2 18551 2 114 2 112 2 124 2 6235 2 2137 2 4184 2 86 2 1192 2 74 2 66 2 62 2 6191 2 8210 2 10 2 2049 2 6299 2 2223 2 298 2 186 2 286 2 2333 2 282 2 280 2 278 2 260 2 252 2 248 2 244 2 242 2 234 2 216 2 208 2 206 2 204 2 202 2 2249 2 200 2 4286 2 640 2 2701 2 1646 2 5436 2 1330 2 1312 2 5061 2 1290 2 1270 2 5358 2 3303 2 1216 2 1202 2 3237 2 1174 2 5268 2 7315 2 3213 2 1160 2 3203 2 3199 2 1148 2 1142 2 1338 2 3391 2 1130 2 3397 2 5730 2 5708 2 3659 2 5706 2 1596 2 3639 2 5678 2 5636 2 12400 2 1506 2 5590 2 5542 2 102 2 5653 2 7543 2 3443 2 7537 2 3437 2 6054 2 1134 2 525 2 654 2 635 2 6877 2 730 2 6871 2 726 2 716 2 4810 2 2761 2 10947 2 4792 2 692 2 686 2 2733 2 684 2 4778 2 18 2 2723 2 672 2 666 2 664 2 784 2 792 2 1108 2 828 2 1088 2 1078 2 332 2 1062 2 1042 2 1040 2 21498 2 13304 2 1006 2 1002 2 964 2 3011 2 950 2 5038 2 926 2 908 2 2895 2 844 2 832 2 27434 2 8192 2 1095 2 1405 2 957 2 965 2 3898 2 1847 2 347 2 7420 2 979 2 5933 2 1815 2 7958 2 7948 2 3568 2 3042 2 105 2 306 2 953 2 951 2 1879 2 2972 2 7574 2 4989 2 895 2 897 2 9103 2 258 2 222 2 949 2 16248 2 1445 2 5039 2 3940 2 945 2 9651 2 7928 2 1255 2 7146 2 7692 2 3124 2 16006 2 1669 2 1585 2 1091 2 5641 2 1557 2 1539 2 9349 2 5663 2 60 2 9785 2 11866 2 1607 2 1101 2 11304 2 1773 2 9237 2 1005 2 1765 2 1015 2 645 2 1225 2 5131 2 1221 2 4199 2 1217 2 522 2 3100 2 1721 2 3750 2 1695 2 1417 2 1133 2 2874 2 847 2 7492 2 5475 2 1967 2 1363 2 4014 2 2023 2 8118 2 875 2 873 2 1965 2 4020 2 3442 2 817 2 857 2 3418 2 1329 2 812 1 1537 1 1612 1 2847 1 4932 1 1522 1 4930 1 802 1 7680 1 2853 1 2879 1 4926 1 808 1 2855 1 826 1 824 1 6967 1 4916 1 842 1 816 1 1276 1 3325 1 1278 1 814 1 2867 1 1413 1 1266 1 1256 1 3309 1 874 1 878 1 1260 1 4976 1 2931 1 886 1 1535 1 378 1 890 1 9088 1 900 1 353 1 660 1 1525 1 4964 1 866 1 864 1 2911 1 862 1 858 1 1381 1 2905 1 1264 1 856 1 2903 1 852 1 59 1 3313 1 8988 1 2893 1 2845 1 788 1 794 1 8896 1 21774 1 724 1 718 1 1561 1 5659 1 7443 1 1377 1 712 1 2759 1 8902 1 1569 1 8898 1 704 1 3618 1 690 1 317 1 868 1 1573 1 1893 1 3628 1 5681 1 1587 1 676 1 674 1 1597 1 670 1 3646 1 1373 1 1605 1 2713 1 1549 1 732 1 40450 1 762 1 7423 1 790 1 1250 1 3329 1 22642 1 1282 1 1543 1 782 1 780 1 2827 1 774 1 2817 1 768 1 15626 1 5380 1 3594 1 991 1 760 1 758 1 7688 1 2803 1 754 1 2801 1 744 1 362 1 742 1 740 1 736 1 3339 1 1292 1 1391 1 2957 1 3572 1 1076 1 3151 1 1100 1 3147 1 1186 1 1098 1 1094 1 5487 1 1090 1 1443 1 75 1 1082 1 1080 1 3127 1 46 1 1070 1 3155 1 1068 1 1064 1 5551 1 5553 1 1060 1 3105 1 5286 1 9384 1 1054 1 1052 1 1046 1 3091 1 3241 1 3089 1 1106 1 2177 1 1467 1 11514 1 9360 1 3221 1 1162 1 1421 1 5047 1 7301 1 3472 1 3474 1 1152 1 5523 1 1429 1 1146 1 1403 1 15511 1 1176 1 1439 1 3189 1 1136 1 3183 1 1433 1 3482 1 1128 1 3175 1 3169 1 3484 1 1118 1 3165 1 5212 1 1112 1 428 1 1461 1 943 1 2955 1 3440 1 13244 1 3001 1 952 1 1218 1 1220 1 3556 1 944 1 3271 1 1509 1 940 1 938 1 936 1 1513 1 1519 1 924 1 1214 1 5016 1 2967 1 7377 1 918 1 916 1 1234 1 914 1 1236 1 2961 1 1238 1 801 1 1415 1 9715 1 1244 1 3005 1 962 1 1194 1 5094 1 1034 1 1026 1 3073 1 5493 1 1469 1 3253 1 1022 1 1475 1 3530 1 1483 1 1014 1 1012 1 3542 1 1495 1 3045 1 1494 1 994 1 56503 1 11233 1 986 1 984 1 982 1 3027 1 1208 1 1210 1 5595 1 24134 1 966 1 3552 1 3261 1 3550 1 815 1 4756 1 1901 1 1925 1 1923 1 1921 1 10107 1 30294 1 1911 1 2261 1 4310 1 1907 1 220 1 4318 1 517 1 228 1 2277 1 230 1 3974 1 198 1 2243 1 2219 1 1953 1 156 1 160 1 2209 1 1947 1 2213 1 1943 1 194 1 178 1 2227 1 4280 1 2233 1 10119 1 14529 1 232 1 2283 1 320 1 236 1 288 1 2337 1 290 1 2339 1 292 1 2345 1 3914 1 1446 1 302 1 1863 1 1116 1 5947 1 310 1 2359 1 2363 1 1867 1 1871 1 3926 1 254 1 1899 1 2291 1 10085 1 250 1 2299 1 1885 1 8450 1 1018 1 1883 1 4358 1 266 1 270 1 2321 1 2323 1 154 1 152 1 4002 1 2197 1 16430 1 2013 1 2097 1 50 1 6107 1 2101 1 56 1 16442 1 5884 1 7357 1 1993 1 2111 1 4849 1 2115 1 1991 1 18477 1 2017 1 2089 1 4072 1 2029 1 4074 1 4 1 2053 1 6 1 2057 1 6155 1 40 1 14 1 2073 1 26 1 4070 1 34 1 38 1 72 1 1985 1 1983 1 130 1 4216 1 1957 1 1455 1 2173 1 1955 1 14465 1 132 1 1969 1 2187 1 140 1 142 1 2191 1 144 1 146 1 118 1 108 1 2125 1 4186 1 78 1 696 1 1981 1 1979 1 1977 1 1975 1 92 1 1915 1 2141 1 98 1 100 1 4198 1 16488 1 106 1 316 1 322 1 658 1 2627 1 4638 1 1677 1 1675 1 548 1 1671 1 4648 1 3716 1 558 1 1665 1 2609 1 2613 1 568 1 570 1 572 1 4670 1 540 1 1679 1 2583 1 6663 1 31227 1 6655 1 512 1 1687 1 2565 1 141 1 520 1 534 1 6907 1 4618 1 524 1 528 1 3730 1 532 1 576 1 580 1 324 1 466 1 4770 1 2675 1 628 1 2679 1 21112 1 5568 1 2685 1 1633 1 642 1 644 1 650 1 211 1 5707 1 57528 1 656 1 624 1 622 1 1637 1 594 1 1659 1 2633 1 4682 1 1653 1 1649 1 1322 1 1647 1 616 1 1645 1 3690 1 604 1 2653 1 659 1 7782 1 504 1 771 1 2543 1 494 1 4474 1 3838 1 1787 1 384 1 386 1 1785 1 2441 1 836 1 1777 1 77550 1 6216 1 404 1 406 1 408 1 1769 1 1791 1 8568 1 1797 1 348 1 8518 1 6471 1 4428 1 3884 1 3868 1 5959 1 350 1 370 1 356 1 1801 1 1364 1 10603 1 5895 1 2415 1 4508 1 414 1 416 1 2521 1 1737 1 308 1 464 1 4562 1 10707 1 4568 1 1713 1 1741 1 476 1 4582 1 2535 1 490 1 1709 1 2541 1 3786 1 450 1 285 1 682 1 422 1 7902 1 2473 1 2475 1 1757 1 430 1 432 1 2497 1 1262 1 5845 1 444 1 5839 1 2495 1 448 1 1371 1 376 1 3371 1 2370 1 3058 1 1009 1 2384 1 337 1 339 1 1007 1 343 1 345 1 6492 1 2398 1 2400 1 6498 1 3048 1 3044 1 6502 1 1019 1 91 1 361 1 315 1 2328 1 281 1 283 1 1047 1 4383 1 291 1 10538 1 303 1 6450 1 1033 1 90 1 1563 1 2360 1 313 1 2362 1 359 1 5091 1 969 1 413 1 2464 1 423 1 425 1 6570 1 2476 1 429 1 433 1 4533 1 977 1 441 1 2490 1 443 1 2494 1 5071 1 2496 1 981 1 985 1 369 1 987 1 371 1 181 1 373 1 3040 1 2428 1 383 1 6530 1 4483 1 2436 1 2438 1 1294 1 1755 1 397 1 401 1 3036 1 279 1 1049 1 277 1 173 1 1089 1 2226 1 179 1 4277 1 183 1 2232 1 4281 1 2234 1 187 1 5183 1 1079 1 1077 1 201 1 2250 1 4299 1 2222 1 3142 1 2318 1 4263 1 4235 1 190 1 4237 1 3150 1 2737 1 2194 1 13389 1 149 1 1099 1 2204 1 157 1 2206 1 753 1 161 1 163 1 2252 1 205 1 207 1 209 1 247 1 2296 1 249 1 4351 1 257 1 2306 1 259 1 2308 1 261 1 2310 1 263 1 115 1 7200 1 2316 1 7198 1 2292 1 1057 1 2288 1 227 1 472 1 1073 1 2266 1 1067 1 1065 1 2272 1 6372 1 796 1 229 1 2278 1 1063 1 12713 1 235 1 1059 1 971 1 3016 1 5422 1 2738 1 2920 1 6840 1 1087 1 590 1 4801 1 707 1 2756 1 867 1 711 1 2912 1 6864 1 721 1 863 1 167 1 725 1 2740 1 689 1 729 1 2732 1 43652 1 12933 1 649 1 653 1 4751 1 15218 1 4755 1 881 1 2926 1 665 1 4763 1 671 1 673 1 677 1 679 1 727 1 861 1 455 1 835 1 2876 1 2832 1 5741 1 787 1 791 1 793 1 797 1 4897 1 2850 1 2852 1 825 1 807 1 4915 1 811 1 552 1 2830 1 2826 1 2780 1 775 1 733 1 2908 1 853 1 4843 1 851 1 751 1 17137 1 843 1 757 1 759 1 761 1 4993 1 2814 1 839 1 2886 1 885 1 4983 1 4731 1 497 1 4595 1 2548 1 501 1 2550 1 947 1 505 1 2992 1 6654 1 511 1 4613 1 2988 1 2568 1 939 1 937 1 535 1 2546 1 1457 1 633 1 2540 1 459 1 2508 1 963 1 959 1 4565 1 475 1 6620 1 907 1 2526 1 479 1 2528 1 4579 1 2534 1 489 1 2538 1 935 1 35344 1 531 1 533 1 589 1 2640 1 593 1 595 1 599 1 11118 1 607 1 609 1 2658 1 901 1 617 1 625 1 8819 1 2938 1 2680 1 17299 1 579 1 573 1 545 1 4631 1 537 1 2586 1 539 1 933 1 2590 1 2594 1 571 1 931 1 2978 1 6700 1 557 1 567 1 923 1 4233 1 1103 1 2178 1 1630 1 3683 1 1638 1 1640 1 1299 1 1644 1 1297 1 1293 1 5744 1 5746 1 1652 1 3703 1 1658 1 5756 1 1664 1 5762 1 3348 1 1628 1 9868 1 1622 1 3615 1 4100 1 1313 1 5682 1 3637 1 1307 1 11546 1 1598 1 1523 1 7749 1 1305 1 1303 1 1301 1 1618 1 1620 1 1672 1 3338 1 3156 1 3779 1 1738 1 7424 1 3789 1 1742 1 3797 1 1750 1 3801 1 1754 1 1756 1 1758 1 6723 1 3322 1 5369 1 1782 1 1786 1 1281 1 3223 1 3729 1 8292 1 1686 1 1688 1 17673 1 1696 1 5794 1 7843 1 1700 1 16039 1 7853 1 1285 1 1712 1 3763 1 3765 1 5814 1 1724 1 1562 1 3607 1 1558 1 1382 1 3433 1 5482 1 3435 1 1666 1 1390 1 1392 1 1345 1 3390 1 1398 1 3386 1 3451 1 9525 1 3465 1 1420 1 1422 1 2862 1 1380 1 3603 1 1349 1 314 1 1336 1 1369 1 3416 1 1365 1 3393 1 1346 1 7497 1 1359 1 3406 1 3407 1 1360 1 17746 1 5834 1 5460 1 3473 1 1426 1 5526 1 185 1 3104 1 1508 1 1512 1 1518 1 9714 1 3577 1 1532 1 1534 1 3366 1 3364 1 1315 1 3593 1 1546 1 203 1 1550 1 1502 1 1500 1 9957 1 9660 1 1434 1 3487 1 998 1 119 1 3372 1 1464 1 1472 1 7641 1 5979 1 3523 1 1480 1 1486 1 1323 1 1496 1 1788 1 1790 1 3839 1 29 1 33 1 35 1 1165 1 213 1 43 1 3317 1 45 1 47 1 3206 1 5251 1 13441 1 4155 1 2108 1 7294 1 2110 1 31 1 2076 1 16371 1 27 1 1 1 2050 1 3 1 103 1 7 1 11 1 2060 1 15 1 1171 1 17 1 19 1 184 1 21 1 2070 1 1169 1 63 1 2112 1 1143 1 32837 1 8295 1 8297 1 1468 1 1125 1 109 1 1743 1 3172 1 1117 1 8307 1 117 1 2166 1 4215 1 121 1 2170 1 1113 1 11366 1 2146 1 1127 1 81 1 2120 1 1141 1 3188 1 77 1 1139 1 1137 1 3184 1 95 1 1135 1 87 1 6232 1 89 1 4187 1 2140 1 10240 1 2034 1 1271 1 1844 1 1241 1 3901 1 1860 1 3911 1 1866 1 1239 1 3286 1 1233 1 1890 1 3941 1 3947 1 1900 1 3949 1 3951 1 3272 1 3893 1 3891 1 4084 1 1245 1 1794 1 1796 1 2834 1 1798 1 3316 1 3849 1 1802 1 3851 1 1804 1 1806 1 3859 1 139 1 3875 1 1253 1 1836 1 5319 1 1912 1 1914 1 1918 1 1982 1 1984 1 8129 1 1195 1 14276 1 4047 1 2004 1 4057 1 16347 1 1611 1 7338 1 1191 1 4071 1 2024 1 1185 1 1197 1 1203 1 1974 1 28569 1 14208 1 3270 1 6028 1 3983 1 1936 1 1942 1 6042 1 1205 1 24479 1 1952 1 1427 1 1207 1 3254 1 1966 1 17280 1 Name: retweet_count, dtype: int64
twitter_archive_clean = twitter_archive.copy()
image_prediction_clean = image_prediction.copy()
twitter_archive_website_clean = twitter_archive_website.copy()
twitter_archive_clean.shape
(2356, 17)
twitter_archive_clean = twitter_archive_clean.query('retweeted_status_id == "NaN"')
twitter_archive_clean.head()
| tweet_id | in_reply_to_status_id | in_reply_to_user_id | timestamp | source | text | retweeted_status_id | retweeted_status_user_id | retweeted_status_timestamp | expanded_urls | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | NaN | NaN | 2017-08-01 16:23:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892420643555336193/photo/1 | 13 | 10 | Phineas | None | None | None | None |
| 1 | 892177421306343426 | NaN | NaN | 2017-08-01 00:17:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892177421306343426/photo/1 | 13 | 10 | Tilly | None | None | None | None |
| 2 | 891815181378084864 | NaN | NaN | 2017-07-31 00:18:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891815181378084864/photo/1 | 12 | 10 | Archie | None | None | None | None |
| 3 | 891689557279858688 | NaN | NaN | 2017-07-30 15:58:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891689557279858688/photo/1 | 13 | 10 | Darla | None | None | None | None |
| 4 | 891327558926688256 | NaN | NaN | 2017-07-29 16:00:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1 | 12 | 10 | Franklin | None | None | None | None |
twitter_archive_clean.shape
(2175, 17)
twitter_archive_clean.drop(['in_reply_to_status_id',
'in_reply_to_user_id',
'retweeted_status_id',
'retweeted_status_user_id',
'retweeted_status_timestamp'] , axis = 1 , inplace = True)
twitter_archive_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 2175 entries, 0 to 2355 Data columns (total 12 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2175 non-null int64 1 timestamp 2175 non-null object 2 source 2175 non-null object 3 text 2175 non-null object 4 expanded_urls 2117 non-null object 5 rating_numerator 2175 non-null int64 6 rating_denominator 2175 non-null int64 7 name 2175 non-null object 8 doggo 2175 non-null object 9 floofer 2175 non-null object 10 pupper 2175 non-null object 11 puppo 2175 non-null object dtypes: int64(3), object(9) memory usage: 220.9+ KB
twitter_images = twitter_archive_clean['tweet_id'].isin(image_prediction_clean['tweet_id'])
twitter_images
0 True 1 True 2 True 3 True 4 True 5 True 6 True 7 True 8 True 9 True 10 True 11 True 12 True 13 True 14 True 15 True 16 True 17 True 18 True 20 True 21 True 22 True 23 True 24 True 25 True 26 True 27 True 28 True 29 True 30 False 31 True 33 True 34 True 35 False 37 True 38 True 39 True 40 True 41 True 42 False 43 True 44 True 45 True 46 True 47 True 48 True 49 True 50 True 51 True 52 True 53 True 54 True 55 False 56 True 57 True 58 True 59 True 60 True 61 True 62 True 63 True 64 False 65 True 66 True 67 True 69 True 70 True 71 True 72 False 75 True 76 True 77 True 79 True 80 True 81 True 82 True 83 False 84 True 85 True 86 True 87 True 88 False 89 True 90 True 92 True 93 True 94 True 96 True 98 True 99 True 100 True 102 True 103 True 104 True 105 True 106 True 107 True 108 True 110 False 111 True 112 True 113 False 114 True 115 True 116 True 117 True 119 True 120 True 121 True 122 True 123 True 125 True 126 True 127 True 128 True 129 True 131 True 133 False 134 True 135 True 136 True 138 True 139 True 140 True 141 True 142 True 143 True 144 True 145 True 147 True 148 False 149 True 150 True 151 True 152 True 153 True 154 True 156 True 157 True 158 True 161 True 162 True 163 True 164 True 166 True 167 True 168 True 169 True 170 True 172 True 173 True 174 True 175 True 176 True 177 True 178 True 179 False 181 True 183 True 184 True 186 False 187 True 188 False 189 False 190 False 191 True 192 False 193 True 196 True 197 True 198 True 199 True 200 True 201 True 202 True 203 True 205 True 206 True 207 True 208 True 209 True 210 True 213 True 214 True 215 True 216 True 217 True 218 False 219 True 220 True 221 True 223 True 224 True 225 True 226 True 227 True 228 False 229 True 232 True 233 True 234 False 235 True 236 True 237 True 238 True 239 True 240 True 241 False 242 True 243 False 244 True 245 True 246 True 248 True 249 True 251 True 252 True 253 True 254 True 255 True 256 False 257 True 258 True 259 True 261 True 262 True 263 True 264 True 265 True 267 True 268 True 269 False 270 True 271 True 274 False 275 True 276 True 277 True 278 True 279 True 280 True 282 True 283 False 284 True 287 True 288 True 290 False 291 False 292 True 293 True 294 True 295 True 296 True 297 True 299 True 300 True 301 True 304 True 305 True 306 True 308 True 311 True 312 True 313 False 314 True 315 True 316 True 317 True 318 True 320 True 321 True 322 True 323 False 324 True 325 True 326 True 328 True 329 True 330 True 331 True 333 True 334 False 335 False 336 True 337 True 338 True 339 True 342 False 344 True 345 True 346 False 347 True 348 True 349 True 350 True 351 True 352 True 353 True 354 True 355 True 356 True 358 True 360 True 361 True 362 True 363 True 364 True 365 True 367 True 368 True 369 True 370 True 371 True 372 True 373 True 374 True 375 False 376 True 377 True 378 True 379 True 380 True 381 True 383 True 384 True 385 True 387 False 388 True 389 True 390 True 391 True 392 True 393 True 394 True 395 True 396 True 398 True 400 True 401 True 402 True 403 True 404 False 405 True 407 True 408 True 409 False 410 True 412 True 413 True 414 True 416 True 417 True 418 True 419 True 421 True 423 True 424 True 426 True 427 False 428 True 429 True 430 True 432 True 433 True 436 True 437 True 439 True 440 True 441 True 442 True 443 True 444 False 445 True 448 True 449 True 451 True 452 True 454 True 456 True 457 True 458 False 459 True 460 True 461 True 463 True 464 True 466 True 467 True 468 True 470 True 471 True 472 True 473 True 474 True 477 True 478 True 480 True 481 True 482 True 483 True 484 True 486 True 487 True 489 True 490 True 491 True 492 True 493 True 494 True 495 True 496 True 497 True 498 False 499 True 500 True 501 True 502 True 503 True 504 True 505 True 507 True 508 True 509 True 510 True 511 True 512 True 513 False 514 True 515 True 516 True 517 True 518 True 519 True 520 True 521 True 523 True 524 True 525 True 526 True 527 True 528 True 529 False 531 True 532 True 533 True 534 True 536 True 537 True 539 False 540 True 542 True 544 True 545 True 547 True 548 True 549 True 550 True 551 False 553 True 554 True 556 True 557 True 559 True 560 True 562 False 563 True 564 True 565 True 567 True 569 True 570 False 571 True 572 True 573 True 575 True 576 False 578 True 579 True 580 True 582 True 584 True 585 True 587 True 588 True 590 True 591 True 592 True 593 True 607 True 608 True 609 True 610 True 611 False 613 True 614 True 616 True 617 True 619 True 620 False 621 True 622 True 623 True 624 True 625 True 626 True 628 True 630 True 631 True 632 True 633 True 635 True 636 True 637 True 638 True 639 True 640 True 641 True 642 True 643 True 644 True 645 True 646 True 647 True 648 True 649 True 650 True 651 True 652 True 653 True 657 False 658 True 659 True 660 True 662 True 663 True 665 True 666 True 667 True 668 True 670 True 672 False 673 True 674 True 675 True 676 False 678 True 679 True 680 True 681 True 683 True 684 True 685 True 687 True 688 True 689 True 690 True 691 True 693 True 695 True 696 True 697 True 698 True 699 False 700 True 701 False 703 True 704 True 705 True 706 True 707 False 708 True 709 True 710 True 711 True 712 True 713 False 714 False 715 True 716 True 717 True 718 True 719 True 721 True 722 True 723 True 724 True 725 True 726 True 727 True 729 True 730 True 731 False 732 True 733 False 734 True 735 True 736 True 737 True 738 True 739 True 740 True 743 True 744 True 746 False 747 True 748 True 750 True 751 True 752 True 754 False 755 True 756 True 757 True 758 True 760 True 761 True 762 True 763 True 765 True 766 True 768 True 769 True 771 True 772 True 774 True 775 True 776 True 777 True 779 True 780 True 781 True 782 True 783 False 785 True 786 True 787 True 788 True 789 True 790 True 791 True 792 True 793 True 795 True 796 True 797 True 798 True 799 True 801 True 802 True 803 True 804 True 805 True 806 True 807 False 808 True 809 True 810 True 812 True 813 True 814 True 816 True 817 True 819 True 820 True 821 True 823 True 824 True 825 True 827 True 828 True 830 True 831 True 832 True 834 True 835 True 836 True 837 True 838 True 839 True 840 True 842 True 843 False 844 True 845 True 846 True 848 True 849 True 850 True 851 True 852 True 853 True 854 True 855 True 856 True 857 False 858 True 859 True 861 True 862 True 863 True 864 True 865 True 866 True 867 True 869 True 870 True 871 True 873 True 874 True 875 True 876 True 877 True 878 True 879 True 880 True 881 False 882 True 883 True 884 True 886 False 887 True 888 True 889 True 891 True 892 True 893 False 894 True 896 True 897 True 898 True 899 True 900 True 901 True 902 True 903 True 904 True 905 False 906 True 907 True 909 True 910 True 912 True 913 True 914 True 915 True 916 True 917 True 918 True 919 True 920 True 921 True 922 True 923 True 924 True 925 True 927 True 928 True 929 True 930 True 931 True 932 True 933 True 934 True 935 True 936 True 938 True 939 False 940 True 941 False 942 True 944 True 945 True 946 False 947 True 948 True 950 True 951 False 952 True 953 True 954 False 955 True 956 True 957 True 958 True 959 True 960 True 961 True 962 True 963 True 964 True 965 True 966 True 967 False 968 True 969 True 970 True 971 True 972 True 973 True 974 True 975 True 976 True 977 True 978 True 979 True 980 True 981 True 982 True 983 True 984 True 985 False 986 True 987 True 988 True 989 True 990 True 991 True 992 True 993 True 994 True 995 True 996 False 997 True 998 True 999 False 1000 True 1001 True 1002 True 1003 True 1004 True 1005 False 1006 False 1007 True 1008 True 1009 True 1010 True 1011 False 1013 True 1014 True 1015 True 1016 True 1017 True 1018 True 1019 True 1020 False 1021 True 1022 False 1024 True 1025 True 1026 True 1027 True 1028 True 1029 True 1030 True 1031 True 1032 True 1033 False 1034 True 1035 True 1036 True 1037 True 1038 True 1039 True 1040 False 1041 True 1042 True 1044 True 1045 True 1046 True 1047 True 1048 True 1049 True 1050 True 1051 False 1052 True 1053 True 1054 True 1055 True 1056 True 1057 True 1058 True 1059 True 1060 True 1061 True 1062 False 1063 True 1064 True 1065 True 1066 True 1067 True 1068 True 1069 True 1070 True 1071 True 1072 True 1073 True 1074 True 1075 False 1076 True 1077 True 1078 True 1079 True 1080 False 1081 True 1082 True 1083 True 1084 True 1085 True 1086 True 1087 True 1088 True 1089 True 1090 True 1091 True 1092 True 1093 True 1094 True 1095 False 1096 True 1097 True 1098 True 1099 True 1100 True 1101 True 1102 True 1103 True 1104 True 1105 True 1106 True 1107 True 1108 False 1109 True 1110 True 1111 True 1112 True 1113 True 1114 True 1115 True 1116 True 1117 True 1118 True 1119 True 1120 True 1121 True 1122 True 1123 True 1124 True 1125 True 1126 True 1127 True 1128 True 1129 True 1130 True 1131 True 1132 True 1133 True 1134 True 1135 True 1136 True 1137 True 1138 True 1139 True 1140 True 1141 True 1142 True 1143 True 1144 True 1145 True 1146 False 1147 True 1148 True 1149 True 1150 True 1151 True 1152 True 1153 True 1154 False 1155 True 1156 True 1157 True 1158 True 1159 True 1160 True 1161 True 1162 True 1163 True 1164 True 1165 True 1166 True 1167 True 1168 True 1169 True 1170 True 1171 True 1172 True 1173 True 1174 True 1175 True 1176 True 1177 True 1178 True 1179 True 1180 True 1181 True 1182 True 1183 True 1184 True 1185 True 1186 True 1187 True 1188 True 1189 True 1190 True 1191 True 1192 True 1193 True 1194 False 1195 True 1196 True 1197 True 1198 True 1199 True 1200 False 1201 False 1202 True 1203 True 1204 True 1205 True 1206 False 1207 True 1208 False 1209 True 1210 True 1211 True 1212 True 1213 True 1214 True 1215 True 1216 True 1217 False 1218 True 1219 True 1220 True 1221 False 1222 True 1223 True 1224 True 1225 True 1226 True 1227 False 1228 True 1229 True 1230 True 1231 True 1232 True 1233 True 1234 True 1235 True 1236 True 1237 False 1238 True 1239 True 1240 True 1241 True 1243 True 1244 True 1245 True 1246 True 1247 True 1248 True 1249 True 1250 True 1251 True 1252 True 1253 True 1254 True 1255 False 1256 True 1257 False 1258 True 1259 True 1260 True 1261 True 1262 True 1263 True 1264 True 1265 True 1266 True 1267 True 1268 True 1269 True 1270 True 1271 True 1272 True 1273 True 1274 True 1275 False 1276 True 1277 True 1278 False 1279 True 1280 True 1281 True 1282 True 1283 True 1284 True 1285 True 1286 False 1287 True 1288 True 1289 True 1290 True 1291 True 1292 True 1293 True 1294 True 1295 False 1296 True 1297 True 1298 True 1299 False 1300 True 1301 False 1302 True 1303 True 1304 True 1305 True 1306 True 1307 True 1308 True 1309 True 1310 True 1311 True 1312 True 1313 False 1314 True 1315 True 1316 True 1317 True 1318 True 1319 True 1320 True 1321 True 1322 True 1323 True 1324 False 1325 True 1326 False 1327 True 1328 True 1329 True 1330 True 1331 True 1332 True 1333 True 1334 True 1335 True 1336 True 1337 True 1338 True 1339 True 1340 True 1341 True 1342 True 1343 True 1344 True 1345 False 1346 True 1347 True 1348 True 1349 False 1350 True 1351 True 1352 True 1353 True 1354 True 1355 True 1356 True 1357 True 1358 True 1359 True 1360 True 1361 True 1362 True 1363 True 1364 False 1365 True 1366 True 1367 True 1368 True 1369 False 1370 True 1371 True 1372 True 1373 True 1374 True 1375 True 1376 False 1377 True 1378 True 1379 True 1380 True 1381 True 1382 True 1383 True 1384 True 1385 True 1386 True 1387 True 1388 True 1389 True 1390 True 1391 True 1392 True 1393 True 1394 True 1395 True 1396 True 1397 True 1398 True 1399 True 1400 True 1401 True 1402 True 1403 True 1404 True 1405 True 1406 True 1407 True 1408 True 1409 False 1410 True 1411 True 1412 True 1413 True 1414 True 1415 True 1416 True 1417 True 1418 True 1419 True 1420 True 1421 True 1422 True 1423 True 1424 True 1425 True 1426 True 1427 False 1428 True 1429 True 1430 True 1431 False 1432 True 1433 True 1434 True 1435 True 1436 True 1437 True 1438 True 1439 True 1440 True 1441 True 1442 True 1443 False 1444 True 1445 False 1446 False 1447 True 1448 True 1449 False 1450 True 1451 True 1452 True 1453 True 1454 True 1455 True 1456 True 1457 True 1458 True 1459 True 1460 True 1461 False 1462 True 1463 True 1464 True 1465 True 1466 False 1467 True 1468 True 1469 True 1470 True 1471 False 1472 True 1473 True 1474 False 1475 True 1476 True 1477 True 1478 True 1479 False 1480 True 1481 True 1482 False 1483 True 1484 True 1485 True 1486 True 1487 True 1488 True 1489 True 1490 True 1491 True 1492 True 1493 True 1494 True 1495 True 1496 True 1497 False 1498 True 1499 True 1500 True 1501 True 1502 False 1503 True 1504 True 1505 False 1506 True 1507 True 1508 True 1509 True 1510 True 1511 True 1512 True 1513 True 1514 True 1515 False 1516 True 1517 True 1518 True 1519 True 1520 True 1521 True 1522 True 1523 False 1524 True 1525 True 1526 True 1527 True 1528 False 1529 True 1530 True 1531 True 1532 True 1533 True 1534 False 1535 True 1536 True 1537 True 1538 True 1539 True 1540 True 1541 True 1542 True 1543 True 1544 True 1545 True 1546 True 1547 True 1548 True 1549 False 1550 True 1551 True 1552 True 1553 True 1554 True 1555 True 1556 True 1557 True 1558 True 1559 True 1560 True 1561 True 1562 True 1563 True 1564 True 1565 True 1566 False 1567 True 1568 True 1569 True 1570 False 1571 True 1572 True 1573 True 1574 True 1575 True 1576 True 1577 False 1578 True 1579 True 1580 True 1581 True 1582 True 1583 True 1584 True 1585 True 1586 False 1587 True 1588 True 1589 True 1590 True 1591 True 1592 False 1593 True 1594 True 1595 True 1596 False 1597 True 1598 False 1599 True 1600 True 1601 True 1602 True 1603 True 1604 True 1605 False 1606 True 1607 True 1608 True 1609 True 1610 True 1611 True 1612 True 1613 True 1614 True 1615 True 1616 True 1617 True 1618 False 1619 True 1620 True 1621 True 1622 True 1623 True 1624 True 1625 False 1626 True 1627 True 1628 False 1629 True 1630 True 1631 True 1632 True 1633 True 1634 True 1635 True 1636 True 1637 True 1638 True 1639 True 1640 False 1641 True 1642 True 1643 True 1644 True 1645 True 1646 True 1647 True 1648 True 1649 True 1650 False 1651 True 1652 True 1653 True 1654 True 1655 True 1656 True 1657 True 1658 True 1659 True 1660 True 1661 True 1662 True 1663 False 1664 True 1665 True 1666 True 1667 True 1668 True 1669 True 1670 True 1671 True 1672 True 1673 True 1674 True 1675 True 1676 False 1677 True 1678 True 1679 True 1680 True 1681 True 1682 True 1683 True 1684 True 1685 True 1686 True 1687 True 1688 True 1689 False 1690 True 1691 True 1692 True 1693 True 1694 True 1695 True 1696 True 1697 True 1698 True 1699 True 1700 True 1701 True 1702 True 1703 True 1704 True 1705 True 1706 False 1707 True 1708 True 1709 True 1710 True 1711 True 1712 True 1713 True 1714 True 1715 True 1716 True 1717 True 1718 True 1719 True 1720 True 1721 True 1722 True 1723 True 1724 True 1725 True 1726 True 1727 True 1728 False 1729 True 1730 True 1731 True 1732 True 1733 True 1734 True 1735 True 1736 True 1737 True 1738 True 1739 True 1740 True 1741 True 1742 True 1743 False 1744 True 1745 True 1746 True 1747 True 1748 True 1749 True 1750 False 1751 True 1752 True 1753 True 1754 True 1755 True 1756 True 1757 True 1758 True 1759 True 1760 False 1761 True 1762 True 1763 True 1764 True 1765 True 1766 True 1767 True 1768 True 1769 True 1770 True 1771 True 1772 True 1773 True 1774 False 1775 True 1776 False 1777 True 1778 True 1779 True 1780 True 1781 True 1782 True 1783 True 1784 True 1785 True 1786 True 1787 True 1788 True 1789 True 1790 True 1791 False 1792 True 1793 True 1794 True 1795 True 1796 True 1797 True 1798 True 1799 True 1800 True 1801 True 1802 True 1803 True 1804 True 1805 True 1806 True 1807 False 1808 True 1809 True 1810 True 1811 True 1812 True 1813 True 1814 True 1815 True 1816 True 1817 True 1818 False 1819 False 1820 True 1821 True 1822 True 1823 True 1824 True 1825 True 1826 True 1827 True 1828 True 1829 True 1830 True 1831 True 1832 True 1833 True 1834 False 1835 True 1836 True 1837 True 1838 True 1839 True 1840 True 1841 True 1842 True 1843 True 1844 False 1845 True 1846 True 1847 True 1848 True 1849 True 1850 True 1851 True 1852 True 1853 True 1854 True 1855 True 1856 True 1857 True 1858 True 1859 True 1860 True 1861 True 1862 True 1863 True 1864 True 1865 True 1866 True 1867 True 1868 True 1869 True 1870 True 1871 True 1872 True 1873 True 1874 True 1875 True 1876 True 1877 True 1878 True 1879 True 1880 True 1881 True 1882 True 1883 True 1884 True 1885 True 1886 True 1887 True 1888 True 1889 True 1890 True 1891 True 1892 True 1893 True 1894 True 1895 False 1896 True 1897 True 1898 True 1899 True 1900 True 1901 True 1902 True 1903 True 1904 True 1905 False 1906 True 1907 True 1908 True 1909 True 1910 True 1911 True 1912 True 1913 True 1914 False 1915 True 1916 False 1917 True 1918 True 1919 True 1920 True 1921 True 1922 True 1923 True 1924 True 1925 True 1926 True 1927 True 1928 True 1929 True 1930 True 1931 True 1932 True 1933 True 1934 True 1935 True 1936 True 1937 True 1938 True 1939 True 1940 False 1941 True 1942 True 1943 True 1944 True 1945 True 1946 True 1947 True 1948 True 1949 True 1950 True 1951 True 1952 True 1953 True 1954 True 1955 True 1956 True 1957 True 1958 True 1959 True 1960 True 1961 True 1962 True 1963 True 1964 True 1965 True 1966 True 1967 True 1968 True 1969 True 1970 True 1971 True 1972 True 1973 True 1974 True 1975 True 1976 True 1977 True 1978 True 1979 True 1980 True 1981 True 1982 True 1983 True 1984 True 1985 True 1986 True 1987 True 1988 True 1989 True 1990 True 1991 True 1992 True 1993 True 1994 True 1995 True 1996 True 1997 True 1998 True 1999 True 2000 True 2001 True 2002 True 2003 True 2004 True 2005 True 2006 True 2007 True 2008 True 2009 True 2010 True 2011 True 2012 True 2013 True 2014 True 2015 True 2016 True 2017 True 2018 True 2019 True 2020 True 2021 True 2022 True 2023 True 2024 True 2025 True 2026 True 2027 True 2028 True 2029 True 2030 True 2031 True 2032 True 2033 True 2034 True 2035 True 2036 True 2037 True 2038 False 2039 True 2040 True 2041 True 2042 True 2043 True 2044 True 2045 True 2046 True 2047 True 2048 True 2049 True 2050 True 2051 True 2052 True 2053 True 2054 True 2055 True 2056 True 2057 True 2058 True 2059 True 2060 True 2061 True 2062 True 2063 True 2064 True 2065 True 2066 True 2067 True 2068 True 2069 True 2070 True 2071 True 2072 True 2073 True 2074 True 2075 True 2076 True 2077 True 2078 True 2079 True 2080 True 2081 True 2082 True 2083 True 2084 True 2085 True 2086 True 2087 True 2088 True 2089 True 2090 True 2091 True 2092 True 2093 True 2094 True 2095 True 2096 True 2097 True 2098 True 2099 True 2100 True 2101 True 2102 True 2103 True 2104 True 2105 True 2106 True 2107 True 2108 True 2109 True 2110 True 2111 True 2112 True 2113 True 2114 True 2115 True 2116 True 2117 True 2118 True 2119 True 2120 True 2121 True 2122 True 2123 True 2124 True 2125 True 2126 True 2127 True 2128 True 2129 True 2130 True 2131 True 2132 True 2133 True 2134 True 2135 True 2136 True 2137 True 2138 True 2139 True 2140 True 2141 True 2142 True 2143 True 2144 True 2145 True 2146 True 2147 True 2148 True 2149 False 2150 True 2151 True 2152 True 2153 True 2154 True 2155 True 2156 True 2157 True 2158 True 2159 True 2160 True 2161 True 2162 True 2163 True 2164 True 2165 True 2166 True 2167 True 2168 True 2169 True 2170 True 2171 True 2172 True 2173 True 2174 True 2175 True 2176 True 2177 True 2178 True 2179 True 2180 True 2181 True 2182 True 2183 True 2184 True 2185 True 2186 True 2187 True 2188 True 2189 False 2190 True 2191 True 2192 True 2193 True 2194 True 2195 True 2196 True 2197 True 2198 True 2199 True 2200 True 2201 True 2202 True 2203 True 2204 True 2205 True 2206 True 2207 True 2208 True 2209 True 2210 True 2211 True 2212 False 2213 True 2214 True 2215 True 2216 True 2217 True 2218 True 2219 True 2220 True 2221 True 2222 True 2223 True 2224 True 2225 True 2226 True 2227 True 2228 True 2229 True 2230 True 2231 True 2232 True 2233 True 2234 True 2235 True 2236 True 2237 True 2238 True 2239 True 2240 True 2241 True 2242 True 2243 True 2244 True 2245 True 2246 True 2247 True 2248 True 2249 True 2250 True 2251 True 2252 True 2253 True 2254 True 2255 True 2256 True 2257 True 2258 True 2261 True 2262 True 2263 True 2264 True 2265 True 2266 True 2267 True 2268 True 2269 True 2270 True 2271 True 2272 True 2273 True 2274 True 2275 True 2276 True 2277 True 2278 True 2279 True 2280 True 2281 True 2282 True 2283 True 2284 True 2285 True 2286 True 2287 True 2288 True 2289 True 2290 True 2291 True 2292 True 2293 True 2294 True 2295 True 2296 True 2297 True 2298 False 2299 True 2300 True 2301 True 2302 True 2303 True 2304 True 2305 True 2306 True 2307 True 2308 True 2309 True 2310 True 2311 True 2312 True 2313 True 2314 True 2315 True 2316 True 2317 True 2318 True 2319 True 2320 True 2321 True 2322 True 2323 True 2324 True 2325 True 2326 True 2327 True 2328 True 2329 True 2330 True 2331 True 2332 True 2333 True 2334 True 2335 True 2336 True 2337 True 2338 True 2339 True 2340 True 2341 True 2342 True 2343 True 2344 True 2345 True 2346 True 2347 True 2348 True 2349 True 2350 True 2351 True 2352 True 2353 True 2354 True 2355 True Name: tweet_id, dtype: bool
twitter_images.sum()
1994
twitter_archive_clean.shape
(2175, 12)
twitter_archive_clean = twitter_archive_clean[twitter_images]
twitter_archive_clean.shape
(1994, 12)
twitter_archive_clean.head()
| tweet_id | timestamp | source | text | expanded_urls | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | 2017-08-01 16:23:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU | https://twitter.com/dog_rates/status/892420643555336193/photo/1 | 13 | 10 | Phineas | None | None | None | None |
| 1 | 892177421306343426 | 2017-08-01 00:17:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV | https://twitter.com/dog_rates/status/892177421306343426/photo/1 | 13 | 10 | Tilly | None | None | None | None |
| 2 | 891815181378084864 | 2017-07-31 00:18:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB | https://twitter.com/dog_rates/status/891815181378084864/photo/1 | 12 | 10 | Archie | None | None | None | None |
| 3 | 891689557279858688 | 2017-07-30 15:58:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ | https://twitter.com/dog_rates/status/891689557279858688/photo/1 | 13 | 10 | Darla | None | None | None | None |
| 4 | 891327558926688256 | 2017-07-29 16:00:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f | https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1 | 12 | 10 | Franklin | None | None | None | None |
twitter_archive_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 1994 entries, 0 to 2355 Data columns (total 12 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 1994 non-null int64 1 timestamp 1994 non-null object 2 source 1994 non-null object 3 text 1994 non-null object 4 expanded_urls 1994 non-null object 5 rating_numerator 1994 non-null int64 6 rating_denominator 1994 non-null int64 7 name 1994 non-null object 8 doggo 1994 non-null object 9 floofer 1994 non-null object 10 pupper 1994 non-null object 11 puppo 1994 non-null object dtypes: int64(3), object(9) memory usage: 202.5+ KB
twitter_archive_clean = pd.melt(twitter_archive_clean ,
id_vars = ['tweet_id',
'timestamp',
'source',
'text',
'expanded_urls',
'rating_numerator',
'rating_denominator',
'name'],
var_name = 'dogs',
value_name = 'dogs_stage')
twitter_archive_clean.drop('dogs',axis=1,inplace = True)
twitter_archive_clean = twitter_archive_clean.sort_values('dogs_stage').drop_duplicates(subset='tweet_id',
keep='last')
twitter_archive_clean.head()
| tweet_id | timestamp | source | text | expanded_urls | rating_numerator | rating_denominator | name | dogs_stage | |
|---|---|---|---|---|---|---|---|---|---|
| 1918 | 667405339315146752 | 2015-11-19 18:13:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Biden. Biden just tripped... 7/10 https://t.co/3Fm9PwLju1 | https://twitter.com/dog_rates/status/667405339315146752/photo/1 | 7 | 10 | Biden | None |
| 1917 | 667435689202614272 | 2015-11-19 20:14:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Ermergerd 12/10 https://t.co/PQni2sjPsm | https://twitter.com/dog_rates/status/667435689202614272/photo/1 | 12 | 10 | None | None |
| 1916 | 667437278097252352 | 2015-11-19 20:20:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Never seen this breed before. Very pointy pup. Hurts when you cuddle. Still cute tho. 10/10 https://t.co/97HuBrVuOx | https://twitter.com/dog_rates/status/667437278097252352/photo/1 | 10 | 10 | None | None |
| 1915 | 667443425659232256 | 2015-11-19 20:44:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Exotic dog here. Long neck. Weird paws. Obsessed with bread. Waddles. Flies sometimes (wow!). Very happy dog. 6/10 https://t.co/rqO4I3nf2N | https://twitter.com/dog_rates/status/667443425659232256/photo/1 | 6 | 10 | None | None |
| 1914 | 667453023279554560 | 2015-11-19 21:22:56 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Meet Cupcake. I would do unspeakable things for Cupcake. 11/10 https://t.co/6uLCWR9Efa | https://twitter.com/dog_rates/status/667453023279554560/photo/1 | 11 | 10 | Cupcake | None |
twitter_archive_clean.shape
(1994, 9)
twitter_archive_clean.dogs_stage.value_counts()
None 1688 pupper 212 doggo 63 puppo 23 floofer 8 Name: dogs_stage, dtype: int64
twitter_archive_clean.dogs_stage.replace('None', np.nan , inplace=True)
twitter_archive_clean.dogs_stage.value_counts()
pupper 212 doggo 63 puppo 23 floofer 8 Name: dogs_stage, dtype: int64
twitter_archive_clean.dogs_stage.dtypes
#datatype is object
dtype('O')
twitter_archive_clean.dogs_stage = twitter_archive_clean.dogs_stage.astype('category')
twitter_archive_clean.dogs_stage.dtypes
CategoricalDtype(categories=['doggo', 'floofer', 'pupper', 'puppo'], ordered=False)
twitter_archive_clean.timestamp.dtype
# Datatype is object
dtype('O')
twitter_archive_clean['timestamp'] = pd.to_datetime(twitter_archive_clean['timestamp'])
twitter_archive_clean.timestamp.dtype
datetime64[ns, UTC]
#extract year, month and day to new columns
twitter_archive_clean['year'] = twitter_archive_clean['timestamp'].dt.year
twitter_archive_clean['month'] = twitter_archive_clean['timestamp'].dt.month
twitter_archive_clean['day'] = twitter_archive_clean['timestamp'].dt.day
#Finally drop timestamp column
#twitter_archive_clean = twitter_archive_clean.drop('timestamp', axis = 1)
twitter_archive_clean.drop('timestamp', axis = 1,inplace = True)
twitter_archive_clean.columns
Index(['tweet_id', 'source', 'text', 'expanded_urls', 'rating_numerator',
'rating_denominator', 'name', 'dogs_stage', 'year', 'month', 'day'],
dtype='object')
twitter_archive_clean.head()
| tweet_id | source | text | expanded_urls | rating_numerator | rating_denominator | name | dogs_stage | year | month | day | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 1918 | 667405339315146752 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Biden. Biden just tripped... 7/10 https://t.co/3Fm9PwLju1 | https://twitter.com/dog_rates/status/667405339315146752/photo/1 | 7 | 10 | Biden | NaN | 2015 | 11 | 19 |
| 1917 | 667435689202614272 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Ermergerd 12/10 https://t.co/PQni2sjPsm | https://twitter.com/dog_rates/status/667435689202614272/photo/1 | 12 | 10 | None | NaN | 2015 | 11 | 19 |
| 1916 | 667437278097252352 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Never seen this breed before. Very pointy pup. Hurts when you cuddle. Still cute tho. 10/10 https://t.co/97HuBrVuOx | https://twitter.com/dog_rates/status/667437278097252352/photo/1 | 10 | 10 | None | NaN | 2015 | 11 | 19 |
| 1915 | 667443425659232256 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Exotic dog here. Long neck. Weird paws. Obsessed with bread. Waddles. Flies sometimes (wow!). Very happy dog. 6/10 https://t.co/rqO4I3nf2N | https://twitter.com/dog_rates/status/667443425659232256/photo/1 | 6 | 10 | None | NaN | 2015 | 11 | 19 |
| 1914 | 667453023279554560 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Meet Cupcake. I would do unspeakable things for Cupcake. 11/10 https://t.co/6uLCWR9Efa | https://twitter.com/dog_rates/status/667453023279554560/photo/1 | 11 | 10 | Cupcake | NaN | 2015 | 11 | 19 |
twitter_archive_clean['url'] = twitter_archive_clean['text'].str.extract(r'(https?://t.co/[A-Za-z0-9]+)')
twitter_archive_clean['text'] = twitter_archive_clean['text'].apply(lambda x : x.split('https')[0])
twitter_archive_clean.columns
Index(['tweet_id', 'source', 'text', 'expanded_urls', 'rating_numerator',
'rating_denominator', 'name', 'dogs_stage', 'year', 'month', 'day',
'url'],
dtype='object')
twitter_archive_clean.head()
| tweet_id | source | text | expanded_urls | rating_numerator | rating_denominator | name | dogs_stage | year | month | day | url | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1918 | 667405339315146752 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Biden. Biden just tripped... 7/10 | https://twitter.com/dog_rates/status/667405339315146752/photo/1 | 7 | 10 | Biden | NaN | 2015 | 11 | 19 | https://t.co/3Fm9PwLju1 |
| 1917 | 667435689202614272 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Ermergerd 12/10 | https://twitter.com/dog_rates/status/667435689202614272/photo/1 | 12 | 10 | None | NaN | 2015 | 11 | 19 | https://t.co/PQni2sjPsm |
| 1916 | 667437278097252352 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Never seen this breed before. Very pointy pup. Hurts when you cuddle. Still cute tho. 10/10 | https://twitter.com/dog_rates/status/667437278097252352/photo/1 | 10 | 10 | None | NaN | 2015 | 11 | 19 | https://t.co/97HuBrVuOx |
| 1915 | 667443425659232256 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Exotic dog here. Long neck. Weird paws. Obsessed with bread. Waddles. Flies sometimes (wow!). Very happy dog. 6/10 | https://twitter.com/dog_rates/status/667443425659232256/photo/1 | 6 | 10 | None | NaN | 2015 | 11 | 19 | https://t.co/rqO4I3nf2N |
| 1914 | 667453023279554560 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Meet Cupcake. I would do unspeakable things for Cupcake. 11/10 | https://twitter.com/dog_rates/status/667453023279554560/photo/1 | 11 | 10 | Cupcake | NaN | 2015 | 11 | 19 | https://t.co/6uLCWR9Efa |
twitter_archive_clean.name.value_counts()
None 546 a 55 Charlie 11 Oliver 10 Cooper 10 Lucy 10 Tucker 9 Penny 9 Winston 8 Sadie 8 Toby 7 Lola 7 the 7 Daisy 7 Jax 6 an 6 Bella 6 Koda 6 Stanley 6 Bo 6 Leo 5 Dave 5 Chester 5 Scout 5 Buddy 5 Louis 5 Rusty 5 Milo 5 Oscar 5 Bailey 5 Chip 4 Finn 4 Scooter 4 Dexter 4 Phil 4 Brody 4 Bentley 4 very 4 Bear 4 Archie 4 Alfie 4 Maggie 4 Derek 4 Reggie 4 Gus 4 Gary 4 George 4 Clarence 4 Jerry 4 Sophie 4 Duke 4 Clark 4 one 4 Cassie 4 Oakley 4 Winnie 4 Jack 4 Larry 4 Loki 3 Walter 3 Gerald 3 just 3 Waffles 3 Vincent 3 Louie 3 Rosie 3 Bruce 3 Olive 3 Calvin 3 Riley 3 Sebastian 3 Moose 3 Lily 3 Ruby 3 Jeffrey 3 Malcolm 3 Wyatt 3 Ellie 3 Zoey 3 Max 3 Samson 3 Gizmo 3 quite 3 Zeke 3 Wallace 3 Steven 3 Otis 3 Jimothy 3 Sunny 3 Earl 3 Boomer 3 Shadow 3 Kyle 3 Reese 3 Nala 3 Wilson 3 Sammy 3 Hank 3 Mia 3 Beau 3 Sugar 2 Atlas 2 Olivia 2 Lenny 2 Jesse 2 Panda 2 Piper 2 Frankie 2 Linda 2 Tyr 2 Percy 2 Aspen 2 Albus 2 Kreg 2 Brad 2 Alice 2 Lorenzo 2 Jiminy 2 Neptune 2 Belle 2 Luca 2 Smokey 2 Finley 2 Remington 2 Ted 2 Bernie 2 Lincoln 2 Ash 2 Chuckles 2 Luna 2 Sam 2 Franklin 2 Oliviér 2 Moe 2 Lennon 2 Juno 2 Dash 2 Mister 2 Kirby 2 Elliot 2 Maxaroni 2 Herm 2 Jimison 2 Cody 2 Fiona 2 Herald 2 Titan 2 Bob 2 Rocky 2 Cash 2 Opal 2 Kevin 2 Axel 2 Roosevelt 2 Churlie 2 Calbert 2 Jeph 2 Gabe 2 Watson 2 Colby 2 Frank 2 Romeo 2 Eli 2 Jackson 2 Nelly 2 Yogi 2 Terry 2 Reginald 2 Marley 2 Pickles 2 Paisley 2 Lou 2 Penelope 2 Raymond 2 Kilo 2 Misty 2 Trooper 2 Wally 2 Baxter 2 Crystal 2 Dakota 2 Sarge 2 Chipson 2 Patrick 2 getting 2 Carl 2 Atticus 2 Peaches 2 Sandy 2 Albert 2 Kenneth 2 Phred 2 Bubbles 2 Odie 2 Griffin 2 Thumas 2 Hunter 2 Harold 2 Coco 2 Charles 2 Ollie 2 Flávio 2 Curtis 2 Maximus 2 Sampson 2 Doug 2 Doc 2 CeCe 2 Sansa 2 Indie 2 Phineas 2 Abby 2 Hammond 2 Django 2 Solomon 2 Klevin 2 Coops 2 Benji 2 Benedict 2 Cupcake 2 Theodore 2 Rufus 2 Bisquick 2 Ava 2 Rory 2 Kreggory 2 Keith 2 Hobbes 2 Chet 2 Pippa 2 Jimbo 1 actually 1 Dwight 1 Remus 1 Hanz 1 Moofasa 1 Fizz 1 Paull 1 Snoopy 1 Kathmandu 1 Clarkus 1 Alexander 1 Dug 1 Lenox 1 Dale 1 Blakely 1 Spark 1 Kirk 1 Monster 1 Fynn 1 Edmund 1 Klein 1 Jangle 1 Dudley 1 Lambeau 1 Maxwell 1 Wiggles 1 Josep 1 Karll 1 Ziva 1 Brat 1 Jett 1 Ozzy 1 Mollie 1 Vinscent 1 Michelangelope 1 Lucia 1 Blitz 1 Brandonald 1 Angel 1 Barney 1 Link 1 Schnitzel 1 Orion 1 Filup 1 Tanner 1 Petrick 1 Ike 1 Cilantro 1 Lili 1 Dutch 1 Superpup 1 Spanky 1 Halo 1 Grady 1 Mya 1 Damon 1 Carper 1 Roscoe 1 Lucky 1 space 1 Tango 1 Jeb 1 Toffee 1 Flurpson 1 light 1 Ambrose 1 Mitch 1 Lugan 1 Sky 1 officially 1 Howie 1 Acro 1 Kollin 1 Dewey 1 Stubert 1 Apollo 1 Einstein 1 Dawn 1 Cupid 1 Gert 1 Eleanor 1 Mona 1 Lorelei 1 Mairi 1 Jay 1 Nollie 1 Karma 1 Stephan 1 Zoe 1 Ronduh 1 Rhino 1 Ebby 1 Tedrick 1 Leonard 1 Gustaf 1 Opie 1 Remy 1 Georgie 1 Dunkin 1 Miguel 1 Gunner 1 Terrenth 1 Bluebert 1 Jessiga 1 Harper 1 Clyde 1 Dietrich 1 Pavlov 1 Bruno 1 Sojourner 1 Tycho 1 Storkson 1 Genevieve 1 Benny 1 Tupawc 1 Sundance 1 Franq 1 DonDon 1 Donny 1 Glacier 1 Harvey 1 Odin 1 Dante 1 Cleopatricia 1 Tessa 1 Hermione 1 Snicku 1 Poppy 1 Ralphus 1 Amélie 1 Liam 1 Duchess 1 Ralpher 1 Julius 1 Snoop 1 Spencer 1 Laika 1 Leonidas 1 Zeus 1 Trigger 1 Bradlay 1 Cheryl 1 Peanut 1 Mark 1 Nigel 1 Herschel 1 Pumpkin 1 my 1 Shelby 1 Hubertson 1 Vince 1 Ralf 1 Emmy 1 Torque 1 Stewie 1 Betty 1 Bubba 1 Mimosa 1 Willy 1 Amy 1 Edd 1 Hazel 1 Gilbert 1 Sonny 1 Chesney 1 Ron 1 incredibly 1 Berb 1 Sobe 1 Jed 1 Bronte 1 Crouton 1 Ulysses 1 Lassie 1 Fabio 1 Davey 1 Kayla 1 Brian 1 Sailer 1 Cal 1 Pluto 1 Fletcher 1 Emanuel 1 Kody 1 Maddie 1 Ester 1 this 1 Chelsea 1 Grizzwald 1 Barclay 1 Harlso 1 Timmy 1 Ken 1 not 1 Eugene 1 Mary 1 Simba 1 Leela 1 Hurley 1 Griswold 1 Loomis 1 Lipton 1 Biden 1 Clarq 1 Marvin 1 Bloop 1 Lupe 1 Carll 1 Mauve 1 Jomathan 1 Nimbus 1 Ralphson 1 Henry 1 Gustav 1 Chubbs 1 Jameson 1 Billy 1 Malikai 1 Ito 1 Logan 1 Ace 1 Harry 1 Daniel 1 Aja 1 Siba 1 Jiminus 1 Jordy 1 Stu 1 Bert 1 Rover 1 Banditt 1 Hector 1 Iggy 1 Ricky 1 Norman 1 Mojo 1 Sage 1 Meera 1 Buckley 1 Binky 1 Pip 1 Bodie 1 Kaiya 1 Anakin 1 Covach 1 Tove 1 Perry 1 Canela 1 Corey 1 Beckham 1 Amber 1 Nida 1 Strider 1 Kingsley 1 Keet 1 Chef 1 Thor 1 Crimson 1 Marty 1 Stella 1 Maya 1 Jennifur 1 Gòrdón 1 Charl 1 Kona 1 Happy 1 Dylan 1 Brandy 1 Longfellow 1 Kramer 1 Ronnie 1 Tiger 1 Tayzie 1 Kallie 1 Gidget 1 Shakespeare 1 Lilli 1 Swagger 1 Frönq 1 Champ 1 Jim 1 Pilot 1 Andru 1 BeBe 1 Mac 1 Traviss 1 Goose 1 Timofy 1 Willie 1 Callie 1 Eriq 1 Shawwn 1 Humphrey 1 Emmie 1 Zooey 1 Godzilla 1 Carter 1 Chase 1 Bobby 1 Philbert 1 Lance 1 Ralph 1 Dobby 1 Arlo 1 Todo 1 Ginger 1 Reptar 1 Levi 1 Mabel 1 Rumble 1 Mattie 1 Rumpole 1 Gerbald 1 Herb 1 Taco 1 Deacon 1 Stuart 1 Coleman 1 Lulu 1 Tripp 1 Autumn 1 Beebop 1 Jebberson 1 Tyrone 1 Rose 1 General 1 Zuzu 1 Pete 1 Tassy 1 Smiley 1 Clybe 1 DayZ 1 Bones 1 Mookie 1 Julio 1 Jaspers 1 Patch 1 Iroh 1 Arnold 1 Tino 1 Enchilada 1 Skye 1 Bayley 1 Cannon 1 Rupert 1 Kanu 1 Livvie 1 Timber 1 Sunshine 1 Chaz 1 Major 1 Brandi 1 Hamrick 1 Fiji 1 Mo 1 unacceptable 1 Shiloh 1 Sully 1 Vinnie 1 Sandra 1 Blanket 1 Mosby 1 Nugget 1 Rontu 1 Gromit 1 Farfle 1 Ivar 1 Beemo 1 Tedders 1 Trip 1 Mason 1 Layla 1 Jonah 1 Hercules 1 Jamesy 1 Jersey 1 Baloo 1 Chevy 1 Tug 1 Boots 1 Horace 1 Evy 1 Kawhi 1 Jarvis 1 Taz 1 Goliath 1 Kenny 1 Brockly 1 Jessifer 1 Quinn 1 Erik 1 Darrel 1 Stormy 1 Rodman 1 Obie 1 Pupcasso 1 Rorie 1 Bruiser 1 Butter 1 Shooter 1 Birf 1 Furzey 1 Gordon 1 Stefan 1 Rilo 1 Burt 1 by 1 Devón 1 Eevee 1 Dex 1 Kendall 1 Jaycob 1 Samsom 1 Rueben 1 Jeffrie 1 Darla 1 Lizzie 1 Chuq 1 Dotsy 1 Cecil 1 Molly 1 Bauer 1 Pipsy 1 Kevon 1 Rodney 1 Terrance 1 Chloe 1 Sparky 1 Rinna 1 Pepper 1 Alejandro 1 all 1 Heinrich 1 Christoper 1 Sweet 1 Lolo 1 Noosh 1 Wishes 1 Zeek 1 Rizzy 1 Grizz 1 Tater 1 Kane 1 Reagan 1 Tito 1 his 1 Steve 1 Pippin 1 Kuyu 1 Aiden 1 Philippe 1 Ralphie 1 Pinot 1 Lilly 1 Harnold 1 JD 1 Billl 1 Aldrick 1 Maks 1 Tess 1 Arlen 1 Trevith 1 Bode 1 Bobb 1 Robin 1 Coopson 1 Stephanus 1 Jo 1 Meatball 1 Brownie 1 Luther 1 Eazy 1 Tyrus 1 Comet 1 Carly 1 Cora 1 Scruffers 1 Chesterson 1 Beya 1 Oshie 1 Olaf 1 Finnegus 1 Winifred 1 Emma 1 Chompsky 1 Venti 1 Kloey 1 Brudge 1 Saydee 1 Millie 1 Chadrick 1 Willem 1 Augie 1 Mack 1 Kaia 1 Crumpet 1 Nico 1 Adele 1 Raphael 1 Chuck 1 Dot 1 Tuck 1 Glenn 1 Batdog 1 Cedrick 1 Crawford 1 Blipson 1 Jareld 1 Randall 1 Lillie 1 Dixie 1 Richie 1 Tom 1 Antony 1 Laela 1 Caryl 1 Sprinkles 1 Jackie 1 Arnie 1 Kobe 1 Flash 1 Skittles 1 Vixen 1 Sailor 1 Brady 1 Ben 1 Florence 1 Divine 1 Dido 1 Tommy 1 Ed 1 Snickers 1 Charleson 1 Andy 1 Sephie 1 Claude 1 Carbon 1 Kenzie 1 Edgar 1 Marlee 1 Grey 1 Creg 1 Ozzie 1 Blue 1 Ridley 1 Freddery 1 Kulet 1 Katie 1 Kyro 1 Rubio 1 infuriating 1 Noah 1 Shikha 1 Wesley 1 Boston 1 Bradley 1 Timison 1 Monty 1 Tobi 1 Jeffri 1 Cermet 1 Asher 1 Karl 1 Alfy 1 Godi 1 Willow 1 Theo 1 Anthony 1 Arya 1 Strudel 1 Bloo 1 Suki 1 Jerome 1 Tuco 1 Pablo 1 Pubert 1 Monkey 1 Aqua 1 Bowie 1 Geoff 1 Sierra 1 Ruffles 1 Maisey 1 Butters 1 Cali 1 Shadoe 1 Cheesy 1 Kota 1 Severus 1 Bobbay 1 Bobble 1 Oreo 1 Grizzie 1 Maude 1 Brooks 1 Naphaniel 1 Alexanderson 1 Shaggy 1 Bookstore 1 Rey 1 Kara 1 Fillup 1 Doobert 1 such 1 Margo 1 Gin 1 Jeremy 1 Rooney 1 Schnozz 1 Dallas 1 Marq 1 Miley 1 Rocco 1 William 1 Napolean 1 Danny 1 Yoda 1 Hall 1 Milky 1 Brutus 1 Banjo 1 Duddles 1 Walker 1 Mike 1 Jazz 1 Striker 1 Lacy 1 Derby 1 Sora 1 Akumi 1 Moreton 1 Huck 1 Puff 1 Juckson 1 Fido 1 Zara 1 Berkeley 1 Travis 1 Joshwa 1 Bertson 1 River 1 Bilbo 1 Colin 1 Fwed 1 Diogi 1 Pawnd 1 Jarod 1 Alf 1 Al 1 Kellogg 1 Scott 1 Rizzo 1 Lilah 1 Holly 1 Stark 1 Rufio 1 Obi 1 Buddah 1 Ole 1 Eve 1 Koko 1 Pancake 1 Shnuggles 1 Huxley 1 Kial 1 Wafer 1 Geno 1 Harrison 1 Rolf 1 Baron 1 Bonaparte 1 Clifford 1 Aubie 1 Bungalo 1 Keurig 1 Fred 1 Bell 1 Blu 1 Ralphé 1 Jockson 1 Cuddles 1 Dook 1 Sid 1 Mingus 1 Mutt 1 Tonks 1 Tebow 1 Sprout 1 Meyer 1 Ashleigh 1 Durg 1 Socks 1 Hero 1 Newt 1 Tilly 1 Astrid 1 O 1 Jazzy 1 Craig 1 Rambo 1 Anna 1 Joey 1 Staniel 1 Darby 1 Murphy 1 Name: name, dtype: int64
twitter_archive_clean.query('name == "None"').loc[:,['text','name']]
| text | name | |
|---|---|---|
| 1917 | Ermergerd 12/10 | None |
| 1916 | Never seen this breed before. Very pointy pup. Hurts when you cuddle. Still cute tho. 10/10 | None |
| 1915 | Exotic dog here. Long neck. Weird paws. Obsessed with bread. Waddles. Flies sometimes (wow!). Very happy dog. 6/10 | None |
| 1911 | Two dogs in this one. Both are rare Jujitsu Pythagoreans. One slightly whiter than other. Long legs. 7/10 and 8/10 | None |
| 1908 | This a Norwegian Pewterschmidt named Tickles. Ears for days. 12/10 I care deeply for Tickles | None |
| 1906 | Another topnotch dog. His name is Big Jumpy Rat. Massive ass feet. Superior tail. Jumps high af. 12/10 great pup | None |
| 1900 | Never seen dog like this. Breathes heavy. Tilts head in a pattern. No bark. Shitty at fetch. Not even cordless. 1/10 | None |
| 1899 | What a dog to start the day with. Very calm. Likes to chill by pond. Corkscrews sticking out of head. Obedient. 7/10 | None |
| 1895 | Super rare dog. Endangered (?). Thinks it's funny. Mocks everything I say. Colorful af. Has wings (dope). 9/10 | None |
| 1894 | Dogs only please. Small cows and other non canines will not be tolerated. Sick tattoos tho 8/10 | None |
| 1893 | OMIGOD 12/10 | None |
| 1891 | THE EYES 12/10\n\nI'm sorry. These are supposed to be funny but your dogs are too adorable | None |
| 1920 | Here we have a neat pup. Very white. Cool shades. Upcoming cruise? Great dog 10/10 | None |
| 1948 | Unfamiliar with this breed. Ears pointy af. Won't let go of seashell. Won't eat kibble. Not very fast. Bad dog 2/10 | None |
| 1945 | 12/10 simply brilliant pup | None |
| 1944 | These are Peruvian Feldspars. Their names are Cupit and Prencer. Both resemble Rand Paul. Sick outfits 10/10 & 10/10 | None |
| 1943 | My goodness. Very rare dog here. Large. Tail dangerous. Kinda fat. Only eats leaves. Doesn't come when called 3/10 | None |
| 1939 | 12/10 gimme now | None |
| 1937 | Here we have a Hufflepuff. Loves vest. Eyes wide af. Flaccid tail. Matches carpet. Always a little blurry. 8/10 | None |
| 1933 | Extremely intelligent dog here. Has learned to walk like human. Even has his own dog. Very impressive 10/10 | None |
| 1927 | These are strange dogs. All have toupees. Long neck for dogs. In a shed of sorts? Work in groups? 4/10 still petable | None |
| 1924 | Quite an advanced dog here. Impressively dressed for canine. Has weapon. About to take out trash. 10/10 good dog | None |
| 1923 | *takes several long deep breaths* omg omg oMG OMG OMG OMGSJYBSNDUYWJO 12/10 | None |
| 1888 | Neat dog. Lots of spikes. Always in push-up position. Laid a shit ton of eggs earlier. Super stellar pup. 10/10 | None |
| 1883 | Wow. Armored dog here. Ready for battle. Face looks dangerous. Not very loyal. Lil dog on back havin a blast. 5/10 | None |
| 1880 | This dog resembles a baked potato. Bed looks uncomfortable. No tail. Comes with butter tho. 3/10 petting still fun | None |
| 1878 | This lil pup is Oliver. Hops around. Has wings but doesn't fly (lame). Annoying chirp. Won't catch tennis balls 2/10 | None |
| 1877 | Fun dogs here. Top one clearly an athlete. Bottom one very stable. Not very soft tho. 9/10s would still cuddle both | None |
| 1980 | Here we have a well-established sunblockerspaniel. Lost his other flip-flop. 6/10 not very waterproof | None |
| 1979 | This appears to be a Mongolian Presbyterian mix. Very tired. Tongue slip confirmed. 9/10 would lie down with | None |
| 1978 | Can stand on stump for what seems like a while. Built that birdhouse? Impressive. Made friends with a squirrel. 8/10 | None |
| 1977 | Oh my. Here you are seeing an Adobe Setter giving birth to twins!!! The world is an amazing place. 11/10 | None |
| 1976 | Not familiar with this breed. No tail (weird). Only 2 legs. Doesn't bark. Surprisingly quick. Shits eggs. 1/10 | None |
| 1975 | Very concerned about fellow dog trapped in computer. 10/10 | None |
| 1974 | Can take selfies 11/10 | None |
| 1970 | Look at this jokester thinking seat belt laws don't apply to him. Great tongue tho 10/10 | None |
| 1969 | Here we have a mixed Asiago from the Galápagos Islands. Only one ear working. Big fan of marijuana carpet. 8/10 | None |
| 1968 | Unique dog here. Very small. Lives in container of Frosted Flakes (?). Short legs. Must be rare 6/10 would still pet | None |
| 1967 | Those are sunglasses and a jean jacket. 11/10 dog cool af | None |
| 1966 | Oh goodness. A super rare northeast Qdoba kangaroo mix. Massive feet. No pouch (disappointing). Seems alert. 9/10 | None |
| 1962 | *internally screaming* 12/10 | None |
| 1961 | Here we have an Austrian Pulitzer. Collectors edition. Levitates (?). 7/10 would garden with | None |
| 1960 | Oh boy what a pup! Sunglasses take this one to the next level. Weirdly folds front legs. Pretty big. 6/10 | None |
| 1959 | "Can you behave? You're ruining my wedding day"\nDOG: idgaf this flashlight tastes good as hell\n\n10/10 | None |
| 1958 | Here we see a lone northeastern Cumberbatch. Half ladybug. Only builds with bricks. Very confident with body. 7/10 | None |
| 1954 | Cool dog. Enjoys couch. Low monotone bark. Very nice kicks. Pisses milk (must be rare). Can't go down stairs. 4/10 | None |
| 1981 | Let's hope this flight isn't Malaysian (lol). What a dog! Almost completely camouflaged. 10/10 I trust this pilot | None |
| 1982 | Here we have a northern speckled Rhododendron. Much sass. Gives 0 fucks. Good tongue. 9/10 would caress sensually | None |
| 1989 | Here we have a 1949 1st generation vulpix. Enjoys sweat tea and Fox News. Cannot be phased. 5/10 | None |
| 82 | Here are my favorite #dogsatpollingstations \nMost voted for a more consistent walking schedule and to increase daily pats tenfold. All 13/10 | None |
| 79 | We usually don't rate Deck-bound Saskatoon Black Bears, but this one is h*ckin flawless. Sneaky tongue slip too. 13/10 would hug firmly | None |
| 77 | I can't believe this keeps happening. This, is a birb taking a bath. We only rate dogs. Please only send dogs. Thank you... 12/10 | None |
| 74 | Guys please stop sending pictures without any dogs in th- oh never mind hello excuse me sir. 12/10 stealthy as h*ck | None |
| 24 | This... is a Jubilant Antarctic House Bear. We only rate dogs. Please only send dogs. Thank you... 12/10 would suffocate in floof | None |
| 23 | You may not have known you needed to see this today. 13/10 please enjoy (IG: emmylouroo) | None |
| 7 | When you watch your owner call another dog a good boy but then they turn back to you and say you're a great boy. 13/10 | None |
| 5 | Here we have a majestic great white breaching off South Africa's coast. Absolutely h*ckin breathtaking. 13/10 (IG: tucker_marlo) #BarkWeek | None |
| 32 | Here we have a corgi undercover as a malamute. Pawbably doing important investigative work. Zero control over tongue happenings. 13/10 | None |
| 55 | Please don't send in photos without dogs in them. We're not @porch_rates. Insubordinate and churlish. Pretty good porch tho 11/10 | None |
| 52 | Ugh not again. We only rate dogs. Please don't send in well-dressed floppy-tongued street penguins. Dogs only please. Thank you... 12/10 | None |
| 41 | Please only send dogs. We don't rate mechanics, no matter how h*ckin good. Thank you... 13/10 would sneak a pat | None |
| 36 | I present to you, Pup in Hat. Pup in Hat is great for all occasions. Extremely versatile. Compact as h*ck. 14/10 (IG: itselizabethgales) | None |
| 3223 | We normally don't rate birds but I feel bad cos this one forgot to fly south for the winter. 9/10 just wants a bath | None |
| 3219 | Someone sent me this without any context and every aspect of it is spectacular. 13/10 please enjoy | None |
| 3217 | Downright majestic af 12/10 | None |
| 3216 | Here we see 33 dogs posing for a picture. All get 11/10 for superb cooperation | None |
| 3227 | When you have a ton of work to do but then remember you have tomorrow off. 10/10 | None |
| 3209 | Happy Wednesday here's a pup wearing a beret. 12/10 please enjoy | None |
| 3207 | "I'm the only one that ever does anything in this household" 10/10 | None |
| 3230 | When you stumble but recover quickly cause your crush is watching. 12/10 | None |
| 3256 | Strange pup here. Easily manipulated. Rather inbred. Sharp for a dog. Appears uncomfortable. 8/10 would still pet | None |
| 3253 | Army of water dogs here. None of them know where they're going. Have no real purpose. Aggressive barks. 5/10 for all | None |
| 3245 | Another magnificent photo. 12/10 | None |
| 3237 | Please send dogs. I'm tired of seeing other stuff like this dangerous pirate. We only rate dogs. Thank you... 10/10 | None |
| 3160 | When you keepin the popcorn bucket in your lap and she reach for some... 10/10 | None |
| 3157 | What kind of person sends in a pic without a dog in it? So churlish. Neat rug tho 7/10 | None |
| 3153 | "Martha come take a look at this. I'm so fed up with the media's unrealistic portrayal of dogs these days." 10/10 | None |
| 3146 | This may be the greatest video I've ever been sent. 4/10 for Charles the puppy, 13/10 overall. (Vid by @stevenxx_) | None |
| 3141 | We normally don't rate unicorns but this one has 3 ears so it must be super rare. 12/10 majestic af | None |
| 3167 | "Thank you friend that was a swell petting" 11/10 (vid by @MatthewjamesMac) | None |
| 3169 | Please only send in dogs. Don't submit other things like this pic of Kenny Chesney in a bathtub. Thank you. 9/10 | None |
| 3194 | She thought the sunset was pretty, but I thought she was prettier. 10/10 | None |
| 3193 | This golden is happy to refute the soft mouth egg test. Not a fan of sweeping generalizations. 11/10 #notallpuppers | None |
| 3192 | Happy Saturday here's a dog in a mailbox. 12/10 | None |
| 3191 | Here we see one dog giving a puptalk to another dog. Both are focused af. Left one has powerful feet. 11/10 for both | None |
| 3189 | I present to you... Dog Jesus. 13/10 (he could be sitting on a rock but I doubt it) | None |
| 3186 | When bae says they can't go out but you see them with someone else that same night. 5/10 & 10/10 for heartbroken pup | None |
| 3184 | THE BRITISH ARE COMING\nTHE BRITISH ARE COMING\n10/10 | None |
| 3181 | These are some pictures of Teddy that further justify his 13/10 rating. Please enjoy | None |
| 3171 | "Fuck the system" 10/10 | None |
| 3257 | I just love this picture. 12/10 lovely af | None |
| 3344 | *collapses* 12/10 | None |
| 3338 | Unique dog here. Wrinkly as hell. Weird segmented neck. Finger on fire. Doesn't seem to notice. 5/10 might still pet | None |
| 3336 | We normally don't rate bears but this one seems nice. Her name is Thea. Appears rather fluffy. 10/10 good bear | None |
| 3328 | I know we joke around on here, but this is getting really frustrating. We rate dogs. Not T-Rex. Thank you... 8/10 | None |
| 3327 | I have no words. Just a magnificent pup. 12/10 | None |
| 3325 | NAAAAAAA ZAPENYAAAAA MABADI-CHIBAWAAA 12/10 | None |
| 3370 | Merry Christmas. My gift to you is this tiny unicorn running into a wall in slow motion. 11/10 | None |
| 3368 | Here we have uncovered an entire battalion of holiday puppers. Average of 11.26/10 | None |
| 3363 | Great picture here. Dog on the right panicked & forgot about his tongue. Middle green dog must've fainted. All 10/10 | None |
| 3356 | I thought I made this very clear. We only rate dogs. Stop sending other things like this shark. Thank you... 9/10 | None |
| 3139 | If you are aware of who is making these please let me know. 13/10 vroom vroom | None |
| 3319 | aahhhhkslaldhwnxmzbbs 12/10 for being da smooshiest | None |
| 3286 | "Hello yes I'll just get one of each color thanks" 12/10 for all | None |
| 3278 | I would like everyone to appreciate this pup's face as much as I do. 11/10 | None |
| 3276 | "Tristan do not speak to me with that kind of tone or I will take away the Xbox." 10/10 | None |
| 3275 | For the last time, WE. DO. NOT. RATE. BULBASAUR. We only rate dogs. Please only send dogs. Thank you ...9/10 | None |
| 3265 | Your fav crew is back and this time they're embracing cannabis culture. 12/10 for all | None |
| 3263 | Heartwarming scene here. Son reuniting w father after coming home from deployment. Very moving. 10/10 for both pups | None |
| 3290 | "FOR THE LAST TIME I DON'T WANNA PLAY TWISTER ALL THE SPOTS ARE GREY DAMN IT CINDY" ...10/10 | None |
| 3316 | "Have a seat, son. There are some things we need to discuss" 10/10 | None |
| 3314 | I just want to be friends with this dog. Appears to be into the sports. A true brobean. 10/10 would introduce to mom | None |
| 3302 | Heartwarming scene of two pups that want nothing more than to be together. Touching af. Great tongue. Both 11/10 | None |
| 3300 | "Yo Boomer I'm taking a selfie, grab your stick"\n"Ok make sure to get this rad hole I just dug in there"\n\nBoth 10/10 | None |
| 3298 | Gang of fearless hoofed puppers here. Straight savages. Elevated for extra terror. Front one has killed before 6/10s | None |
| 3297 | Someone help the girl is being mugged. Several are distracting her while two steal her shoes. Clever puppers 121/110 | None |
| 3296 | Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you | None |
| 3292 | After watching this video, we've determined that Pippa will be upgraded to a 12/10. Please enjoy | None |
| 3137 | Here's a dog enjoying a sunset. 11/10 would trade lives with | None |
| 2982 | From left to right:\nCletus, Jerome, Alejandro, Burp, & Titson\nNone know where camera is. 45/50 would hug all at once | None |
| 2974 | *lets out a tiny whimper and then collapses* ...12/10 | None |
| 2973 | WeRateDogs stickers are here and they're 12/10! Use code "puppers" at checkout 🐶🐾\n\nShop now: | None |
| 2968 | The squad is back for St. Patrick's Day! ☘ 💚\n13/10 for all | None |
| 2964 | Here's a brigade of puppers. All look very prepared for whatever happens next. 80/80 | None |
| 2959 | What hooligan sent in pictures w/out a dog in them? Churlish af. 3/10 just bc that's a neat fluffy bean bag chair | None |
| 2078 | We. Only. Rate. Dogs. Do not send in other things like this fluffy floor shark clearly ready to attack. Get it together guys... 12/10 | None |
| 3008 | This dog just brutally murdered a snowman. Currently toying with its nutritious remains 9/10 would totally still pet | None |
| 3002 | When your roommate eats your leftover Chili's but you pretend it's no big deal cuz you fat anyway. 10/10 head up pup | None |
| 2998 | Everybody stop what you're doing and watch this video. Frank is stuck in a loop. 13/10 (Vid by @klbmatty) | None |
| 2995 | Please stop sending in non canines like this Guatemalan Twiggle Bunny. We only rate dogs. Only send in dogs... 11/10 | None |
| 2956 | Oh. My. God. 13/10 magical af | None |
| 2955 | I want to hear the joke this dog was just told. 10/10 | None |
| 2906 | Get you a pup that can do both. 10/10 | None |
| 2904 | We normally don't rate marshmallows but this one appears to be flawlessly toasted so I'll make an exception. 10/10 | None |
| 2908 | This pic is old but I hadn't seen it until today and had to share. Creative af. 13/10 very good boy, would pet well | None |
| 2949 | I can't even comprehend how confused this dog must be right now. 10/10 | None |
| 2946 | Please don't send in any more polar bears. We only rate dogs. Thank you... 10/10 | None |
| 2942 | Here we see an extremely rare Bearded Floofmallow. Only a few left in the wild. 11/10 would pet with a purpose | None |
| 2940 | Happy Saturday here's 9 puppers on a bench. 99/90 good work everybody | None |
| 2938 | I know we only rate dogs, but since it's Easter I guess we could rate a bunny for a change. 10/10 petable as hell | None |
| 2937 | Happy Easter from the squad! 🐇🐶 13/10 for all | None |
| 2934 | Here are two lil cuddly puppers. Both 12/10 would snug like so much | None |
| 3102 | ERMAHGERD 12/10 please enjoy | None |
| 3099 | "I'm bathing the children what do you want?" ...both 10/10 | None |
| 3096 | "Don't ever talk to me or my son again." ...both 10/10 | None |
| 3091 | Take all my money. 10/10 | None |
| 3106 | This dog is never sure if he's doing the right thing. 10/10 | None |
| 3135 | 12/10 revolutionary af | None |
| 3131 | Guys I found the dog from Up. 12/10 | None |
| 3130 | These two pirates crashed their ship and don't know what to do now. Very irresponsible of them. Both 9/10 | None |
| 3124 | Happy Wednesday here's a bucket of pups. 44/40 would pet all at once | None |
| 3116 | "Dammit hooman quit playin I jus wanna wheat thin" 11/10 | None |
| 3109 | Here we are witnessing five Guatemalan Birch Floofs in their natural habitat. All 12/10 (Vid by @pootdanielle) | None |
| 3043 | When you wake up from a long nap and have no idea who you are. 12/10 | None |
| 3040 | "Yes hi could I get a number 4 with no pickles" ...12/10 | None |
| 3038 | I found a forest Pipsy. 12/10 | None |
| 3023 | When you're just relaxin and having a swell time but then remember you have to fill out the FAFSA ...11/10 | None |
| 3020 | Please enjoy this pup in a cooler. Permanently ready for someone to throw a tennis ball his way. 12/10 | None |
| 3018 | Here's a sneak peek of me on spring break. 10/10 so many tired pups these days | None |
| 3030 | "Ma'am, for the last time, I'm not authorized to make that type of transaction" 11/10 | None |
| 3074 | I'm not sure what's happening here, but it's pretty spectacular. 12/10 for both | None |
| 3067 | I know it's tempting, but please stop sending in pics of Donald Trump. Thank you ...9/10 | None |
| 3066 | "AND IIIIIIIIIIIEIIIIIIIIIIIII WILL ALWAYS LOVE YOUUUUU" 11/10 | None |
| 3065 | Please enjoy this picture as much as I did. 12/10 | None |
| 3053 | Really guys? Again? I know this is a rare Albanian Bingo Seal, but we only rate dogs. Only send in dogs... 9/10 | None |
| 3050 | When you're trying to watch your favorite tv show but your friends keep interrupting. 10/10 relatable af | None |
| 3049 | "YOU CAN'T HANDLE THE TRUTH" both 10/10 | None |
| 3714 | Pink dogs here. Unreasonably long necks. Left guy has only 1 leg. Quite nimble. Don't bark tho 4/10s would still pet | None |
| 3712 | After so many requests... here you go.\n\nGood dogg. 420/10 | None |
| 3711 | Yea I can't handle this job anymore your dogs are too adorable. 12/10 | None |
| 3708 | Two miniature golden retrievers here. Webbed paws. Don't walk very efficiently. Can't catch a tennis ball. 4/10s | None |
| 3706 | Me running from commitment. 10/10 | None |
| 3705 | Neat pup here. Enjoys lettuce. Long af ears. Short lil legs. Hops surprisingly high for dog. 9/10 still very petable | None |
| 3703 | *struggling to breathe properly* 12/10 | None |
| 3700 | Pack of horned dogs here. Very team-oriented bunch. All have weird laughs. Bond between them strong. 8/10 for all | None |
| 3698 | This pup holds the secrets of the universe in his left eye. 12/10 | None |
| 3694 | Tfw she says hello from the other side. 9/10 | None |
| 3692 | Striped dog here. Having fun playing on back. Sturdy paws. Looks like an organized Dalmatian. 7/10 would still pet | None |
| 3717 | Scary dog here. Too many legs. Extra tail. Not soft, let alone fluffy. Won't bark. Moves sideways. Has weapon. 2/10 | None |
| 3745 | Silly dog here. Wearing bunny ears. Nice long tail. Unique paws. Not crazy soft but will do. Extremely agile. 7/10 | None |
| 3743 | Honor to rate this dog. Great teeth. Nice horns. Unbelievable posture. Fun to pet. Big enough to ride. 10/10 rad dog | None |
| 3737 | *screams for a little bit and then crumples to the floor shaking* 12/10 | None |
| 3732 | "To bone or not to bone?"\n10/10 | None |
| 3730 | This dude slaps your girl's ass what do you do?\n5/10 | None |
| 3729 | Flamboyant pup here. Probably poisonous. Won't eat kibble. Doesn't bark. Slow af. Petting doesn't look fun. 1/10 | None |
| 3727 | Two obedient dogs here. Left one has extra leg sticking out of its back. They each get 9/10. Would pet both at once | None |
| 3724 | I would do radical things in the name of Dog God. I'd believe every word in that book. 10/10 | None |
| 3719 | Can't do better than this lol. 10/10 for the owner | None |
| 3746 | This dog can't see its haters. 11/10 | None |
| 3652 | Exotic underwater dog here. Very shy. Wont return tennis balls I toss him. Never been petted. 5/10 I bet he's soft | None |
| 3649 | 10/10 for dog. 7/10 for cat. 12/10 for human. Much skill. Would pet all | None |
| 3647 | Mighty rare dogs here. Long smooth necks. Great knees. Travel in squads. 1 out of every 14 is massive. 8/10 for all | None |
| 3645 | When you accidentally open up the front facing camera. 10/10 | None |
| 3638 | When she says she'll be ready in a minute but you've been waiting in the car for almost an hour. 10/10 | None |
| 3636 | Lots of pups here. All are Judea Hazelnuts. Exceptionally portable. 8/10 for all | None |
| 3657 | This pup has a heart on its ass and that is downright legendary. 12/10 | None |
| 3682 | Super rare dog here. Spiffy mohawk. Sharp mouth. Shits eggs. Cool chariot wheel in background. 6/10 v confident pup | None |
| 3678 | Interesting dog here. Very large. Purple. Manifests rainbows. Perfect teeth. No ears. Surprisingly knowledgable 6/10 | None |
| 3675 | I'm just going to leave this one here as well. 13/10 | None |
| 3672 | Very fit horned dog here. Looks powerful. Not phased by wind. Great beard. Big enough to ride? 6/10 would cuddle | None |
| 3670 | When you try to recreate the scene from Lady & The Tramp but then remember you don't have a significant other. 10/10 | None |
| 3668 | Remarkable dog here. Walks on back legs really well. Looks extra soft. 8/10 would cuddle with | None |
| 3747 | Vibrant dog here. Fabulous tail. Only 2 legs tho. Has wings but can barely fly (lame). Rather elusive. 5/10 okay pup | None |
| 3837 | Incredibly rare dog here. Good at bipedalism. Rad blue spikes. Ready to dance. 11/10 | None |
| 3821 | Honor to rate this dog. Lots of fur on him. Two massive tumors on back. Should get checked out. Very neat tho. 7/10 | None |
| 3818 | Two gorgeous pups here. Both have cute fake horns(adorable). Barn in the back looks on fire. 5/10 would pet rly well | None |
| 3815 | Super rare dog right here guys. Doesn't bark. Seems strong. Blue. Very family friendly pet. 10/10 overall good dog | None |
| 3814 | Here we have Pancho and Peaches. Pancho is a Condoleezza Gryffindor, and Peaches is just an asshole. 10/10 & 7/10 | None |
| 3823 | Unique dog here. Oddly shaped tail. Long pink front legs. I don't think dogs breath underwater sos. 4/10 bad owner | None |
| 3838 | Fascinating dog here. Loves beach. Oddly long nose for dog. Massive ass paws. Hard to cuddle w. 3/10 would still pet | None |
| 3867 | These two dogs are Bo & Smittens. Smittens is trying out a new deodorant and wanted Bo to smell it. 10/10 true pals | None |
| 3866 | Sneaky dog here. Tuba player has no clue. 10/10 super sneaky | None |
| 3862 | Here we have an Azerbaijani Buttermilk named Guss. He sees a demon baby Hitler behind his owner. 10/10 stays alert | None |
| 3859 | I can't do better than he did. 10/10 | None |
| 3858 | 2 rare dogs. They waddle (v inefficient). Sometimes slide on bellies. Right one wants to be aircraft Marshall. 9/10s | None |
| 3855 | Good teamwork between these dogs. One is on lookout while other eats. Long necks. Nice big house. 9/10s good pups | None |
| 3850 | There's a lot going on here but in my honest opinion every dog pictured is pretty fabulous. 10/10 for all. Good dogs | None |
| 3849 | It is an honor to rate this pup. He is a Snorklhuahua from Amarillo. A true renaissance dog. Also part Rudolph 10/10 | None |
| 3809 | Just got home from college. Dis my dog. She does all my homework. Big red turd in background. 13/10 no bias at all | None |
| 3769 | "Hi yes this is dog. I can't help with that s- sir please... the manager isn't in right n- well that was rude"\n10/10 | None |
| 3765 | AT DAWN...\nWE RIDE\n\n11/10 | None |
| 3776 | 😂😂😂 10/10 for the dog and the owner | None |
| 3757 | Sharp dog here. Introverted. Loves purple. Not fun to pet. Hurts to cuddle with. 6/10 still good dog tho | None |
| 3750 | Two unbelievably athletic dogs here. Great form. Perfect execution. 10/10 for both | None |
| 3777 | Awesome dog here. Not sure where it is tho. Spectacular camouflage. Enjoys leaves. Not very soft. 5/10 still petable | None |
| 3803 | Here we have a Gingivitis Pumpernickel named Zeus. Unmatched tennis ball capacity. 10/10 would highly recommend | None |
| 3794 | Special dog here. Pretty big. Neck kinda long for dog. Cool spots. Must be a Dalmatian variant. 6/10 would still pet | None |
| 3792 | Very human-like. Cute overbite smile *finger to earpiece* I'm being told that the dog is actually on the right\n10/10 | None |
| 3783 | I've never seen a dog so genuinely happy about a tennis ball. 12/10 s'cute | None |
| 3780 | Here we see really big dog cuddling smaller dog. Very touching. True friendship. 10/10s would pet both at once | None |
| 3469 | ITSOFLUFFAYYYYY 12/10 | None |
| 3464 | *screeches for a sec and then faints* 12/10 | None |
| 3461 | When someone yells "cops!" at a party and you gotta get your drunk friend out of there. 10/10 | None |
| 3458 | Finally some constructive political change in this country. 11/10 | None |
| 3456 | Exotic handheld dog here. Appears unathletic. Feet look deadly. Can be thrown a great distance. 5/10 might pet idk | None |
| 3454 | Who leaves the last cupcake just sitting there? 9/10 | None |
| 3453 | This pups goal was to get all four feet as close to each other as possible. Valiant effort 12/10 | None |
| 3450 | 10/10 I'd follow this dog into battle no questions asked | None |
| 3448 | Here we see a Byzantine Rigatoni. Very aerodynamic. No eyes. Actually not windy here they just look like that. 9/10 | None |
| 3472 | Hope your Monday isn't too awful. Here's two baseball puppers. 11/10 for each | None |
| 3501 | 12/10 stay woke | None |
| 3496 | We've got ourselves a battle here. Watch out Reggie. 11/10 | None |
| 3491 | Here's a handful of sleepy puppers. All look unaware of their surroundings. Lousy guard dogs. Still cute tho 11/10s | None |
| 3490 | 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10s | None |
| 3488 | Here we have an entire platoon of puppers. Total score: 88/80 would pet all at once | None |
| 3487 | & this is Yoshi. Another world record contender 11/10 (what the hell is happening why are there so many contenders?) | None |
| 3486 | Ok, I'll admit this is a pretty adorable bunny hopping towards the ocean but please only send in dogs... 11/10 | None |
| 3485 | Breathtaking scene. A father taking care of his newborn pup. Tugs at the heartstrings. 10/10 restores my faith | None |
| 3482 | "Yes hello I'ma just snag this here toasted bagel real quick. carry on." 9/10 | None |
| 3481 | Extremely rare pup here. Very religious. Always praying. Too many legs. Not overwhelmingly fluffy. Won't bark. 3/10 | None |
| 3478 | These two pups just met and have instantly bonded. Spectacular scene. Mesmerizing af. 10/10 and 7/10 for blue dog | None |
| 3502 | I shall call him squishy and he shall be mine, and he shall be my squishy. 13/10 | None |
| 3441 | This dog gave up mid jump. 9/10 | None |
| 3404 | If your Monday isn't going so well just take a look at this. Both 12/10 | None |
| 3403 | This dog doesn't know how to stairs. Quite tragic really. 9/10 get it together pup | None |
| 3399 | I know everyone's excited for Christmas but that doesn't mean you can send in reindeer. We only rate dogs... 8/10 | None |
| 3389 | This pup's name is Sabertooth (parents must be cool). Ears for days. Jumps unannounced. 9/10 would pet diligently | None |
| 3384 | "Dammit hooman I'm jus trynna lik the fler" 11/10 | None |
| 3413 | Exotic pup here. Tail long af. Throat looks swollen. Might breathe fire. Exceptionally unfluffy 2/10 would still pet | None |
| 3439 | Not much to say here. I just think everyone needs to see this. 12/10 | None |
| 3437 | Contortionist pup here. Inside pentagram. Clearly worships Satan. Known to slowly push fragile stuff off tables 6/10 | None |
| 3434 | In honor of the new Star Wars movie. Here's Yoda pug. 12/10 pet really well, would I | None |
| 3433 | Endangered triangular pup here. Could be a wizard. Caught mid-laugh. No legs. Just fluff. Probably a wizard. 9/10 | None |
| 3432 | This was Cindy's face when she heard Susan forgot the snacks for after the kid's soccer game. 11/10 | None |
| 3429 | IT'S PUPPERGEDDON. Total of 144/120 ...I think | None |
| 3428 | Guys this was terrifying. Really spooked me up. We don't rate ghosts. We rate dogs. Please only send dogs... 9/10 | None |
| 3427 | "Everything looks pretty good in there. Make sure to brush your gums. Been flossing? How's school going?" Both 10/10 | None |
| 3419 | These little fellas have opposite facial expressions. Both 12/10 | None |
| 3418 | This made my day. 12/10 please enjoy | None |
| 3415 | Touching scene here. Really stirs up the emotions. The bond between father & son. So beautiful. 10/10 for both pups | None |
| 3625 | Marvelous dog here. Rad ears. Not very soft. Large tumor on nose. Has a pet rock. Good w kids. 6/10 overall neat pup | None |
| 3505 | Rare shielded battle dog here. Very happy about abundance of lettuce. Painfully slow fetcher. Still petable. 5/10 | None |
| 3588 | When you're having a blast and remember tomorrow's Monday. 11/10 | None |
| 3586 | Large blue dog here. Cool shades. Flipping us off w both hands. Obviously a preteen. 3/10 for rude blue preteen pup | None |
| 3582 | I know a lot of you are studying for finals. Good luck! Here's this. It should help somehow. 12/10 | None |
| 3581 | 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10 | None |
| 3578 | Guys I'm getting real tired of this. We only rate dogs. Please don't send in other things like this Bulbasaur. 3/10 | None |
| 3575 | This pup is sad bc he didn't get to be the toy car. Also he has shitty money management skills. 10/10 still cute tho | None |
| 3572 | When you realize it doesn't matter how hard you study. You're still going to fail. 10/10 | None |
| 3569 | Yea I can't handle the cuteness anymore. Curls for days. 12/10 for all | None |
| 3568 | Herd of wild dogs here. Not sure what they're trying to do. No real goals in life. 3/10 find your purpose puppers | None |
| 3579 | When you're having a great time sleeping and your mom comes in and turns on the lights. 10/10 | None |
| 3618 | Extraordinary dog here. Looks large. Just a head. No body. Rather intrusive. 5/10 would still pet | None |
| 3617 | Very happy pup here. Always smiling. Loves his little leaf. Carries it everywhere with him. 9/10 | None |
| 3611 | Magical floating dog here. Very calm. Always hangs by the pond. Rather moist. Good listener. 6/10 personally I'd pet | None |
| 3608 | Take a moment and appreciate how these two dogs fell asleep. Simply magnificent. 10/10 for both | None |
| 3605 | IT'S SO SMALL ERMERGERF 11/10 | None |
| 3602 | *lets out a tiny screech and then goes into complete cardiac arrest* 12/10 | None |
| 3598 | Sun burnt dog here. Quite large. Wants to promote peace. Looks unemployed. Ears for days. 7/10 would pet profusely | None |
| 3597 | When you ask your professor about extra credit on the last day of class. 8/10 | None |
| 3504 | RT until we find this dog. Clearly a cool dog (front leg relaxed out window). Looks to be a superb driver. 10/10 | None |
| 3530 | ER... MER... GERD 13/10 | None |
| 3529 | I have found another. 13/10 | None |
| 3527 | When your entire life is crumbling before you and you're trying really hard to hold your shit together.\n10/10 | None |
| 3526 | Ok last one of these. I may try to make some myself. Anyway here ya go. 13/10 | None |
| 3532 | Bedazzled pup here. Fashionable af. Super yellow. Looks hella fluffy. Webbed paws for efficient fetching. 8/10 | None |
| 3517 | What an honor. 3 dogs here. Blond one is clearly a gymnast. Other two just confused. Very nifty pups. 9/10 for all | None |
| 3515 | When you're presenting a group project and the 4th guy tells the teacher that he did all the work. 10/10 | None |
| 3514 | holy shit 12/10 | None |
| 3513 | What kind of person sends in a picture without a dog in it? 1/10 just because that's a nice table | None |
| 3510 | Yea I lied. Here's more. All 13/10 | None |
| 3509 | Everyone needs to watch this. 13/10 | None |
| 3507 | The tail alone is 13/10. Great dog, better owner | None |
| 3506 | Happy Friday. Here's some golden puppers. 12/10 for all | None |
| 3534 | This pup was carefully tossed to make it look like she's riding that horse. I have no words this is fabulous. 12/10 | None |
| 3535 | These two pups are masters of camouflage. Very dedicated to the craft. Both must've spent decades practicing. 10/10s | None |
| 3558 | "AT DAWN, WE RIDE"\n10/10 for both dogs | None |
| 3547 | Rare submerged pup here. Holds breath for a long time. Frowning because that spoon ignores him. 5/10 would still pet | None |
| 3545 | When you see sophomores in high school driving. 11/10 | None |
| 3544 | Two gorgeous dogs here. Little waddling dog is a rebel. Refuses to look at camera. Must be a preteen. 5/10 & 8/10 | None |
| 3539 | "🎶 DO YOU BELIEVE IN LIFE AFTER LOVE 🎶"\n11/10 | None |
| 3537 | Everyone please just appreciate how perfect these two photos are. 12/10 for both | None |
| 3536 | Just received another perfect photo of dogs and the sunset. 12/10 | None |
| 2958 | "Please, no puparazzi" 11/10 | None |
| 2396 | "Good afternoon class today we're going to learn what makes a good boy so good" 13/10 | None |
| 2385 | I call this one "A Blep by the Sea" 12/10 | None |
| 2384 | Please only send in dogs. We only rate dogs, not seemingly heartbroken ewoks. Thank you... still 10/10 would console | None |
| 2417 | oh h*ck 10/10 | None |
| 2339 | Name a more iconic quartet... I'll wait. 13/10 for all | None |
| 2350 | Happy New Year from the squad! 13/10 for all | None |
| 2372 | I'm happy to inform you all that Jake is in excellent hands. 13/10 for him and his new family \n | None |
| 2363 | Everybody stop what you're doing and look at this dog with her tiny Santa hat. 13/10 | None |
| 2360 | We only rate dogs. Please don't send in other things like this very good Christmas tree. Thank you... 13/10 | None |
| 2441 | I didn't believe it at first but now I can see that voter fraud is a serious h*ckin issue. 11/10 | None |
| 2527 | We normally don't rate lobsters, but this one appears to be a really good lobster. 10/10 would pet with caution | None |
| 2525 | Idk why this keeps happening. We only rate dogs. Not Bangladeshi Couch Chipmunks. Please only send dogs... 12/10 | None |
| 2524 | Who keeps sending in pictures without dogs in them? This needs to stop. 5/10 for the mediocre road | None |
| 2560 | This girl straight up rejected a guy because he doesn't like dogs. She is my hero and I give her 13/10 | None |
| 2557 | I can't tap the screen to make the hearts appear fast enough. 10/10 for the source of all future unproductiveness | None |
| 2549 | "Yep... just as I suspected. You're not flossing." 12/10 and 11/10 for the pup not flossing | None |
| 2532 | Here's a perturbed super floof. 12/10 would snug so damn well | None |
| 2543 | RIP Loki. Thank you for the good times. You will be missed by many. 14/10 | None |
| 2538 | Everybody drop what you're doing and look at this dog. 13/10 must be super h*ckin rare | None |
| 2534 | We only rate dogs. Pls stop sending in non-canines like this Urban Floof Giraffe. I can't handle this. 11/10 | None |
| 2464 | Your favorite squad is looking extra h*ckin spooky today. 13/10 for all | None |
| 2456 | Oh h*ck look at this spookling right here. Fright level off the charts. 12/10 sufficiently spooked | None |
| 2471 | When she says you're a good boy and you know you're a good boy because you're a good boy. 13/10 | None |
| 2498 | "Honestly Kathleen I just want more Ken Bone" 12/10 | None |
| 2491 | Did... did they pick out that license plate? 12/10 for both | None |
| 2489 | Atlas is back and this time he's got doggles. Still 13/10 solarly conscious af | None |
| 2319 | I've never wanted to go to a camp more in my entire life. 12/10 for all on board | None |
| 2167 | At first I thought this was a dog because of the sign, but it is clearly Wilson from Home Improvement. Please only send in dogs... 11/10 | None |
| 2165 | Seriously guys? Again? We only rate dogs. Please stop submitting other things like this super good hammerhead shark. Thank you... 12/10 | None |
| 2158 | Oh jeez u did me quite the spook little fella. We normally don't rate triceratops but this one seems suspiciously good. 11/10 would pet well | None |
| 2150 | A photographer took pictures before and after he told his bunny he's a good boy. Here are the results. 13/10 | None |
| 2140 | THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY HI AFTER ALL. PUPGRADED TO A 14/10. WOULD BE AN HONOR TO FLY WITH | None |
| 2169 | Please stop sending in animals other than dogs. We only rate dogs. Not Furry Ecuadorian Sea Turtles. Thank you... 12/10 | None |
| 2186 | PUPDATE: I'm proud to announce that Toby is 236 days sober. Pupgraded to a 13/10. We're all very proud of you, Toby | None |
| 2183 | C'mon guys. Please only send in dogs. We only rate dogs, not Exceptional-Tongued Peruvian Floor Bears. Thank you... 12/10 | None |
| 2182 | We usually don't rate polar bears but this one seems extra good. Majestic as h*ck. 13/10 would hug for a while | None |
| 2177 | Unbelievable... We. Only. Rate. Dogs. Please stop sending in other things like this Blossoming Flop Kangaroo. Thank you... 11/10 | None |
| 2100 | Oh my this spooked me up. We only rate dogs, not happy ghosts. Please send dogs only. It's a very simple premise. Thank you... 13/10 | None |
| 2097 | Unbelievable. We only rate dogs. Please don't send in non-canines like the "I" from Pixar's opening credits. Thank you... 12/10 | None |
| 2095 | Here's a h*ckin peaceful boy. Unbothered by the comings and goings. 13/10 please reveal your wise ways | None |
| 2085 | Real funny guys. Sending in a pic without a dog in it. Hilarious. We'll rate the rug tho because it's giving off a very good vibe. 11/10 | None |
| 2107 | We only rate dogs. Please don't send in Jesus. We're trying to remain professional and legitimate. Thank you... 14/10 | None |
| 2136 | Instead of the usual nightly dog rate, I'm sharing this story with you. Meeko is 13/10 and would like your help \n\n | None |
| 2130 | Here we have an exotic dog. Good at ukulele. Fashionable af. Has two more arms if needed. Is blue. Knows what 'ohana means. 13/10 would pet | None |
| 2125 | Here we have perhaps the wisest dog of all. Above average with light sabers. Immortal as h*ck. 14/10 dog, or dog not, there is no try | None |
| 2120 | HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SAY. IT'S. H*CKIN. RIDICULOUS. THAT. DOGS. CAN'T VOTE. ABSOLUTE. CODSWALLUP. THANK. YOU. 13/10 | None |
| 2118 | We only rate dogs. Please don't send perfectly toasted marshmallows attempting to drive. Thank you... 13/10 | None |
| 2113 | Ladies and gentlemen... I found Pipsy. He may have changed his name to Pablo, but he never changed his love for the sea. Pupgraded to 14/10 | None |
| 2286 | We only rate dogs. Please don't send in any more non-dogs like this Wild Albanian Street Moose. Thank you... 11/10 | None |
| 2318 | We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\n | None |
| 2317 | The floofs have been released I repeat the floofs have been released. 84/70 | None |
| 2308 | We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 | None |
| 2305 | Please stop sending in non-canines like this Very Pettable Dozing Bath Tortoise. We only rate dogs. Only send dogs... 12/10 | None |
| 2224 | Atlas is back and this time he's prettier than the sunset. Seems to be aware of it too. 13/10 would give modeling contract | None |
| 2228 | We only rate dogs. Please don't send in any non-canines like this Floppy Tongued House Panda. Thank you... 12/10 would still pet | None |
| 2205 | You have been visited by the magical sugar jar puggo. He has granted you three boops. 13/10 would use immediately | None |
| 2203 | I didn't even have to intervene. Took him 4 minutes to realize his error. 10/10 for Kevin | None |
| 2229 | When you're so blinded by your systematic plagiarism that you forget what day it is. 0/10 | None |
| 2252 | I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\n | None |
| 2200 | Here we have some incredible doggos for #K9VeteransDay. All brave as h*ck. Salute your dog in solidarity. 14/10 for all | None |
| 7975 | Here we have a Japanese Irish Setter. Lost eye in Vietnam (?). Big fan of relaxing on stair. 8/10 would pet | None |
| 2656 | Why does this never happen at my front door... 165/150 | None |
| 2659 | Teagan reads entire books in store so they're free. Loved 50 Shades of Grey (how dare I make that joke so late) 9/10 | None |
| 2771 | When you're given AUX cord privileges from the back seat and accidentally start blasting an audiobook... both 10/10 | None |
| 2672 | Here's a heartwarming scene of a single father raising his two pups. Downright awe-inspiring af. 12/10 for everyone | None |
| 2671 | Pwease accept dis rose on behalf of dog. 11/10 | None |
| 2664 | She walks herself up and down the train to be petted by all the passengers. 13/10 I can't handle this | None |
| 2663 | Here's another picture without a dog in it. Idk why you guys keep sending these. 4/10 just because that's a neat rug | None |
| 2785 | When your crush won't pay attention to you. Both 10/10 tragic af | None |
| 2791 | Here we are witnessing the touchdown of a pupnado. It's not funny it's actually very deadly. 9/10 might still pet | None |
| 2631 | Ohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboy. 10/10 for all (by happytailsresort) | None |
| 2630 | Guys.. we only rate dogs. Pls don't send any more pics of the Loch Ness Monster. Only send in dogs. Thank you. 11/10 | None |
| 2794 | After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP | None |
| 2644 | We only rate dogs... this is a Taiwanese Guide Walrus. Im getting real heckin tired of this. Please send dogs. 10/10 | None |
| 2702 | "This photographer took pics of her best friend before and after she told them they were beautiful" 12/10 | None |
| 2730 | #BarkWeek is getting rather heckin terrifying over here. Doin me quite the spooken. 13/10 (vid by @corgi_zero) | None |
| 2735 | "So... we meat again" (I'm so sorry for that pun I couldn't resist pls don't unfollow) 10/10 | None |
| 2709 | And finally, happy 4th of July from the squad 🇺🇸 13/10 for all | None |
| 2723 | Duuun dun... duuun dun... dunn dun. dunn dun. dun dun dun dun dun dun dun dun dun dun dun dun dun dun dun. 10/10 | None |
| 2737 | This sherk must've leapt out of the water and into the canoe, trapping the human. Won't even help paddle smh. 7/10 | None |
| 2750 | PUPDATE: can't see any. Even if I could, I couldn't reach them to pet. 0/10 much disappointment | None |
| 2752 | Guys... Dog Jesus 2.0\n13/10 buoyant af | None |
| 2753 | When you just can't resist... 10/10 topnotch tongue | None |
| 2684 | Here we are witnessing an isolated squad of bouncing doggos. Unbelievably rare for this time of year. 11/10 for all | None |
| 2683 | "The dogtor is in hahahaha no but seriously I'm very qualified and that tumor is definitely malignant" 10/10 | None |
| 2681 | When you hear your owner say they need to hatch another egg, but you've already been on 17 walks today. 10/10 | None |
| 2749 | Guys... I said DOGS with "shark qualities" or "costumes." Not actual sharks. This did me a real frighten ...11/10 | None |
| 2739 | Pls don't send more sherks. I don't care how seemingly floofy they are. It does me so much frighten. Thank u. 11/10 | None |
| 2744 | Again w the sharks guys. This week is about dogs ACTING or DRESSING like sharks. NOT actual sharks. Thank u ...11/10 | None |
| 2745 | Guys pls stop sending actual sharks. It's too dangerous for me and the people taking the photos. Thank you ...10/10 | None |
| 2746 | Never seen a shark hold another shark like this before. Must be evolving. Both 10/10 please only send dogs though | None |
| 2795 | When the photographer forgets to tell you where to look... 10/10 | None |
| 2866 | I swear to god if we get sent another Blue Madagascan Peacock we'll deactivate. We 👏 Only 👏 Rate 👏 Dogs... 9/10 | None |
| 2854 | When you're way too slow for the "down low" portion of a high five. 13/10 | None |
| 2852 | "Challenge accepted"\n10/10 | None |
| 2849 | "Challenge completed" \n(pupgraded to 12/10) | None |
| 2587 | Another pic without a dog in it? What am I supposed to do? Rate the carpet? Fine I will. 7/10 looks adequately comfy | None |
| 2885 | Happy 4/20 from the squad! 13/10 for all | None |
| 2891 | Garden's coming in nice this year. 10/10 | None |
| 2565 | I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC BY HIS OWNER THIS IS SO WILD. 14/10 ULTIMATE LEGEND STATUS | None |
| 2871 | I'm getting super heckin frustrated with you all sending in non canines like this ostrich. We only rate dogs... 9/10 | None |
| 2578 | Here's a couple rufferees making sure all the sports are played fairly today. Both 10/10 would bribe with extra pets | None |
| 2574 | You need to watch these two doggos argue through a cat door. Both 11/10 | None |
| 2814 | We only rate dogs. Pls stop sending in non-canines like this Slovak Car Bunny. It makes my job very difficult. 11/10 | None |
| 2817 | Everybody stop what you're doing and watch these puppers enjoy summer. Both 13/10 | None |
| 2821 | Right after you graduate vs when you remember you're on your own now and can barely work a washing machine ...10/10 | None |
| 2809 | For the last time, we only rate dogs. Pls stop sending other animals like this Duck-Billed Platypus. Thank you. 9/10 | None |
| 2808 | "Don't talk to me or my son ever again" ...10/10 for both | None |
| 2806 | When a single soap orb changes your entire perception of the universe... 10/10 | None |
| 2628 | This left me speechless. 14/10 heckin heroic af | None |
| 2802 | This... is a Tyrannosaurus rex. We only rate dogs. Please only send in dogs. Thank you ...10/10 | None |
| 2833 | "Ello this is dog how may I assist" ...10/10 | None |
| 2838 | When your teacher agreed on 10,000 RTs and no final but after 24 hours you only have 37... 10/10 | None |
| 2825 | We only rate dogs. Please stop sending in your 31 year old sons that won't get out of your house. Thank you... 11/10 | None |
| 2829 | This dog is more successful than I will ever be. 13/10 absolute legend | None |
| 137 | I have stumbled puppon a doggo painting party. They're looking to be the next Pupcasso or Puppollock. All 13/10 would put it on the fridge | None |
| 902 | This doggo was initially thrilled when she saw the happy cartoon pup but quickly realized she'd been deceived. 10/10 | None |
| 882 | Nothin better than a doggo and a sunset. 11/10 | None |
| 238 | Here's a doggo fully pupared for a shower. H*ckin exquisite balance. Sneaky tongue slip too. 13/10 | None |
| 269 | Here's a stressed doggo. Had a long day. Many things on her mind. The hat communicates these feelings exquisitely. 11/10 | None |
| 927 | Here's a super majestic doggo and a sunset 11/10 | None |
| 81 | Here's a very large dog. He has a date later. Politely asked this water person to check if his breath is bad. 12/10 good to go doggo | None |
| 320 | Here's a doggo who looks like he's about to give you a list of mythical ingredients to go collect for his potion. 11/10 would obey | None |
| 450 | Elder doggo does a splash. Both 13/10 incredible stuff | None |
| 775 | Here's a doggo realizing you can stand in a pool. 13/10 enlightened af (vid by Tina Conrad) | None |
| 676 | All hail sky doggo. 13/10 would jump super high to pet | None |
| 444 | Here's a sleepy doggo that requested some assistance. 12/10 would carry everywhere | None |
| 431 | Here's a doggo doin a struggle. 11/10 much determined | None |
| 810 | Here's a doggo blowing bubbles. It's downright legendary. 13/10 would watch on repeat forever (vid by Kent Duryee) | None |
| 327 | Here we have a doggo who has messed up. He was hoping you wouldn't notice. 11/10 someone help him | None |
| 699 | Here's a doggo trying to catch some fish. 8/10 futile af (vid by @KellyBauerx) | None |
| 697 | Hooman used Pokeball\n*wiggle*\n*wiggle*\nDoggo broke free \n10/10 | None |
| 370 | Here's an anonymous doggo that appears to be very done with Christmas. 11/10 cheer up pup | None |
| 696 | Nothing better than a doggo and a sunset. 10/10 majestic af | None |
| 365 | Here's a doggo who has concluded that Christmas is entirely too bright. Requests you tone it down a notch. 11/10 | None |
| 293 | Here's a little more info on Dew, your favorite roaming doggo that went h*ckin viral. 13/10 \n | None |
| 671 | Here's a doggo completely oblivious to the double rainbow behind him. 10/10 someone tell him | None |
| 869 | Here's a doggo struggling to cope with the winds. 13/10 | None |
| 659 | This doggo is just waiting for someone to be proud of her and her accomplishment. 13/10 legendary af | None |
| 612 | I don't know any of the backstory behind this picture but for some reason I'm crying. 13/10 for owner and doggo | None |
| 2148 | At first I thought this was a shy doggo, but it's actually a Rare Canadian Floofer Owl. Amateurs would confuse the two. 11/10 only send dogs | None |
| 2554 | Atlas rolled around in some chalk and now he's a magical rainbow floofer. 13/10 please never take a bath | None |
| 2815 | Just wanted to share this super rare Rainbow Floofer in case you guys haven't seen it yet. 13/10 colorful af | None |
| 5260 | This pupper has a magical eye. 11/10 I can't stop looking at it | None |
| 5462 | This pupper is very passionate about Christmas. Wanted to give the tree a hug. So cute. 8/10 | None |
| 4530 | Have you ever seen such a smol pupper? Portable af. 12/10 would keep in shirt pocket | None |
| 5023 | Seriously, add us 🐶 11/10 for sad wet pupper | None |
| 4817 | *faints* 12/10 perfection in pupper form | None |
| 5243 | "You got any games on your phone" 7/10 for invasive brown Dalmatian pupper | None |
| 5456 | I promise this wasn't meant to be a cuteness overload account but ermergerd look at this cozy pupper. 13/10 | None |
| 4829 | Like father (doggo), like son (pupper). Both 12/10 | None |
| 5449 | Here we see a rare pouched pupper. Ample storage space. Looks alert. Jumps at random. Kicked open that door. 8/10 | None |
| 4341 | Here's a pupper with squeaky hiccups. Please enjoy. 13/10 | None |
| 5000 | "I shall trip the big pupper with leash. Big pupper will never see it coming. I am a genius." Both 11/10 | None |
| 5016 | Here's a very sleepy pupper. Thinks it's an airplane. 12/10 would snug for eternity | None |
| 5248 | This pupper's New Year's resolution was to become a Hershey's kiss. 11/10 she's super pumped about it | None |
| 5432 | Reckless pupper here. Not even looking at road. Absolute menace. No regard for fellow pupper lives. 10/10 still cute | None |
| 4540 | Evolution of a pupper yawn featuring Max. 12/10 groundbreaking stuff | None |
| 5453 | Watch out Airbud. This pupper is also good at the sports. 12/10 I'm thinking D1 | None |
| 5268 | Everybody needs to read this. Jack is our first 14/10. Truly heroic pupper | None |
| 5368 | This pupper is patiently waiting to scare the shit out of Santa. 10/10 | None |
| 5367 | Here's a sleepy Christmas pupper 11/10 | None |
| 5301 | Here we see a faulty pupper. Might need to replace batteries. Try turning off & back on again. 9/10 would still pet | None |
| 5302 | Breathtaking pupper here. Should be on the cover of Dogue. Top-notch tongue. Appears considerably fluffy. 12/10 | None |
| 4427 | Here's a helicopter pupper. He takes off at random. H*ckin hard to control. 12/10 rare af | None |
| 4416 | Here's a very sleepy pupper. Appears to be portable as h*ck. 12/10 would snug intensely | None |
| 5307 | "Hello forest pupper I am house pupper welcome to my abode" (8/10 for both) | None |
| 4906 | Here's a badass mystery pupper. You weren't aware that you owe him money, but you do. 10/10 shades sick af | None |
| 5348 | I just love this pic. 11/10 this pupper is going places | None |
| 5314 | Here we see a nifty leaping pupper. Feet look deadly. Sad that the holidays are over. 9/10 undeniably huggable | None |
| 5317 | Happy New Year from your fav holiday squad! 🎉 12/10 for all\n\nHere's to a pupper-filled year 🍻🐶🐶🐶 | None |
| 5336 | Can you spot Toby the guilty pupper? 7/10 would be higher but he made quite the mess shredding his stuffed pals | None |
| 5416 | This pupper likes tape. 12/10 | None |
| 5400 | Here's a pupper with some mean tan lines. Snazzy sweater though 12/10 | None |
| 4979 | Here's a pupper with magic eyes. Not wearing a seat belt tho (irresponsible af). Very distracting to driver. 9/10 | None |
| 5282 | Here we have a basking dino pupper. Looks powerful. Occasionally shits eggs. Doesn't want the holidays to end. 5/10 | None |
| 5465 | Three generations of pupper. 11/10 for all | None |
| 4858 | This pupper had to undergo emergency haircut surgery so he could hear again. 10/10 miraculous af | None |
| 4859 | This pupper was about to explain where that dirt came from but then decided against it. 11/10 | None |
| 4383 | Here's a pupper in a onesie. Quite pupset about it. Currently plotting revenge. 12/10 would rescue | None |
| 4385 | Here we have Burke (pupper) and Dexter (doggo). Pupper wants to be exactly like doggo. Both 12/10 would pet at same time | None |
| 5387 | This little pupper just arrived. 11/10 would snug | None |
| 5381 | Everybody look at this beautiful pupper 13/10 | None |
| 4965 | This pupper got her hair chalked for her birthday. Hasn't told her parents yet. Rebellious af. 11/10 very nifty | None |
| 4401 | Pupper hath acquire enemy. 13/10 | None |
| 4407 | Like doggo, like pupper version 2. Both 11/10 | None |
| 5373 | This pupper is not coming inside until she catches a snowflake on her tongue. 11/10 the determination is palpable | None |
| 5418 | Another spooky pupper here. Most definitely floating. No legs. Probably knows some dark magic. 10/10 very spooked | None |
| 4708 | Pause your cookout and admire this pupper's nifty hat. 10/10 | None |
| 5153 | This pupper is afraid of its own feet. 12/10 would comfort | None |
| 5158 | I hope you guys enjoy this beautiful snowy pupper as much as I did. 11/10 | None |
| 5097 | HAPPY V-DAY FROM YOUR FAV PUPPER SQUAD 13/10 for all | None |
| 5167 | This pupper just descended from heaven. 12/10 can probably fly | None |
| 5168 | "Hello yes could I get one pupper to go please thank you"\nBoth 13/10 | None |
| 5089 | I know this is a tad late but here's a wonderful Valentine's Day pupper 12/10 | None |
| 4208 | Here's a pupper before and after being asked "who's a good girl?" Unsure as h*ck. 12/10 hint hint it's you | None |
| 4141 | Sometimes you guys remind me just how impactful a pupper can be. Cooper will be remembered as a good boy by so many. 14/10 rest easy friend | None |
| 5624 | This lil pupper is sad because we haven't found Kony yet. RT to spread awareness. 12/10 would pet firmly | None |
| 4668 | Here's a frustrated pupper attempting to escape a pool of Frosted Flakes. 12/10 | None |
| 4692 | Please stop sending it pictures that don't even have a doggo or pupper in them. Churlish af. 5/10 neat couch tho | None |
| 5115 | Here's a pupper with a piece of pizza. Two of everybody's favorite things in one photo. 11/10 | None |
| 4694 | Here's a pupper that's very hungry but too lazy to get up and eat. 12/10 (vid by @RealDavidCortes) | None |
| 5114 | This pupper doubles as a hallway rug. Very rare. Versatile af. 11/10 | None |
| 5593 | This little pupper can't wait for Christmas. He's pretending to be a present. S'cute. 11/10 twenty more days 🎁🎄🐶 | None |
| 5144 | This pupper only appears through the hole of a Funyun. Much like Phineas, this one is also mysterious af. 10/10 | None |
| 4732 | PUPPER NOOOOO BEHIND YOUUU 10/10 pls keep this pupper in your thoughts | None |
| 5079 | When it's Janet from accounting's birthday but you can't eat the cake cuz it's chocolate. 10/10 hang in there pupper | None |
| 5219 | This pupper just wants to say hello. 11/10 would knock down fence for | None |
| 5051 | Happy Friday here's a sleepy pupper 12/10 | None |
| 5048 | This pupper doesn't understand gates. 10/10 so close | None |
| 4774 | Was just informed about this hero pupper and others like her. Another 14/10, would be an absolute honor to pet | None |
| 5488 | Here's a pupper licking in slow motion. 12/10 please enjoy | None |
| 5227 | This pupper is sprouting a flower out of her head. 12/10 revolutionary af | None |
| 4290 | Retweet the h*ck out of this 13/10 pupper #BellLetsTalk | None |
| 5477 | I'm sure you've all seen this pupper. Not prepared at all for the flying disc of terror. 10/10 | None |
| 5036 | This pupper killed this great white in an epic sea battle. Now wears it as a trophy. Such brave. Much fierce. 13/10 | None |
| 5234 | With great pupper comes great responsibility. 12/10 | None |
| 5468 | All this pupper wanted to do was go skiing. No one told him about the El Niño. Poor pupper. 10/10 maybe next year | None |
| 5540 | This pupper is fed up with being tickled. 12/10 I'm currently working on an elaborate heist to steal this dog | None |
| 4249 | I couldn't make it to the #WKCDogShow BUT I have people there on the ground relaying me the finest pupper pics possible. 13/10 for all | None |
| 5505 | Good morning here's a grass pupper. 12/10 | None |
| 5078 | If a pupper gave that to me I'd probably start shaking and faint from all the joy. 11/10 | None |
| 5200 | This pupper can only sleep on shoes. It's a crippling disease. Tearing his family apart. 12/10 I'd totally pet tho | None |
| 5543 | This pupper just wants a belly rub. This pupper has nothing to do w the tree being sideways now. 10/10 good pupper | None |
| 6680 | Hopefully this puppo on a swing will help get you through your Monday. 11/10 would push | None |
| 6130 | Here's a puppo participating in the #ScienceMarch. Cleverly disguising her own doggo agenda. 13/10 would keep the planet habitable for | None |
| 6291 | Here's a super supportive puppo participating in the Toronto #WomensMarch today. 13/10 | None |
| 5994 | Here's a puppo that seems to be on the fence about something haha no but seriously someone help her. 13/10 | None |
| 6116 | Sorry for the lack of posts today. I came home from school and had to spend quality time with my puppo. Her name is Zoey and she's 13/10 | None |
| 6661 | When ur older siblings get to play in the deep end but dad says ur not old enough. Maybe one day puppo. All 10/10 | None |
| 6516 | I want to finally rate this iconic puppo who thinks the parade is all for him. 13/10 would absolutely attend | None |
| 6279 | Here's a very loving and accepting puppo. Appears to have read her Constitution well. 14/10 would pat head approvingly | None |
twitter_archive_clean.loc[1908,'name'] = "Tickles"
twitter_archive_clean.loc[1906,'name'] = "Big Jumpy Rat"
twitter_archive_clean.loc[1944,'name'] = "Cupit"
twitter_archive_clean.loc[1878,'name'] = "Oliver"
twitter_archive_clean.loc[3146,'name'] = "Charles"
twitter_archive_clean.loc[3867,'name'] = "Smittens"
twitter_archive_clean.loc[3803,'name'] = "Zeus"
twitter_archive_clean.loc[3389,'name'] = "Sabertooth"
uppercase_name_list = ['O']
twitter_archive_clean['name'].replace(uppercase_name_list , "O'Malley" , inplace = True)
lowercase_name_list = ['such', 'a', 'quite', 'not', 'one', 'incredibly', 'mad', 'an',
'very', 'just', 'my', 'his', 'actually', 'getting', 'this',
'unacceptable', 'all', 'old', 'infuriating', 'the', 'by',
'officially', 'life', 'light', 'space']
twitter_archive_clean['name'].replace(lowercase_name_list , np.nan , inplace = True)
twitter_archive_clean['name'].replace('None' , np.nan , inplace = True)
twitter_archive_clean.loc[(1878,1906,1908,1944,3146,3389,3803,3867),['text','name']]
| text | name | |
|---|---|---|
| 1878 | This lil pup is Oliver. Hops around. Has wings but doesn't fly (lame). Annoying chirp. Won't catch tennis balls 2/10 | Oliver |
| 1906 | Another topnotch dog. His name is Big Jumpy Rat. Massive ass feet. Superior tail. Jumps high af. 12/10 great pup | Big Jumpy Rat |
| 1908 | This a Norwegian Pewterschmidt named Tickles. Ears for days. 12/10 I care deeply for Tickles | Tickles |
| 1944 | These are Peruvian Feldspars. Their names are Cupit and Prencer. Both resemble Rand Paul. Sick outfits 10/10 & 10/10 | Cupit |
| 3146 | This may be the greatest video I've ever been sent. 4/10 for Charles the puppy, 13/10 overall. (Vid by @stevenxx_) | Charles |
| 3389 | This pup's name is Sabertooth (parents must be cool). Ears for days. Jumps unannounced. 9/10 would pet diligently | Sabertooth |
| 3803 | Here we have a Gingivitis Pumpernickel named Zeus. Unmatched tennis ball capacity. 10/10 would highly recommend | Zeus |
| 3867 | These two dogs are Bo & Smittens. Smittens is trying out a new deodorant and wanted Bo to smell it. 10/10 true pals | Smittens |
twitter_archive_clean.name.unique()
array(['Biden', nan, 'Cupcake', 'Reese', 'Philippe', 'Hall', 'Tickles',
'Dook', 'Big Jumpy Rat', 'Naphaniel', 'Frank', 'Kial', 'George',
'Olive', 'Calvin', 'Filup', 'Fwed', 'Joshwa', 'Jockson', 'Jeph',
'Cupit', 'Carll', 'Klevin', 'Keet', 'Dave', 'Clybe', 'Gabe',
'Pipsy', 'Bradlay', 'Churlie', 'Kenneth', 'Clarence', 'Timison',
'Genevieve', 'Shaggy', 'Tedrick', 'Stu', 'Erik', 'Cleopatricia',
'Otis', 'Jiminy', 'Alfie', 'Oliver', 'Josep', 'Ron', 'Lugan',
'Christoper', 'Skittles', 'Walter', 'Scout', 'Kreggory', 'Jimothy',
'Phineas', 'Cash', 'Nugget', 'Goose', 'Venti', 'Benedict', 'Nelly',
'Dante', 'Penny', 'Aja', 'Emmy', 'Shadow', 'Derek', 'Mingus',
'Maya', 'Canela', 'Jeffrey', 'Gerald', 'Ralphus', 'Zeke', 'Jim',
'Ted', 'Bruno', 'Koda', 'Zoey', 'Jax', 'Franklin', 'Darla',
'Archie', 'Tilly', 'Waffles', 'Jimbo', 'Maisey', 'Beau', 'Steven',
'Jack', 'Duddles', 'Bailey', 'Romeo', 'Jesse', 'Bella', 'Louis',
'Elliot', 'Gary', 'Koko', 'Alfy', 'Stanley', 'Rusty', 'Noah',
'Kevin', 'Earl', 'Rey', 'Monkey', 'Lola', 'Harry', 'Lucky',
'Herald', 'Chipson', 'Carl', 'Ricky', 'Fynn', 'Durg', 'Covach',
'Geoff', 'Maxwell', 'Phred', 'Eriq', 'Luca', 'Lolo', 'Jackson',
'Baxter', 'Samson', 'Gordon', 'Tyrone', 'Kramer', 'Brad', 'Marq',
'Trooper', 'Kilo', 'Derby', 'Frönq', 'Pubert', 'Opal', 'Hazel',
'Cedrick', 'Vinscent', 'Bodie', 'Sadie', 'Lincoln', 'Freddery',
'Kobe', 'Chester', 'Dunkin', 'Oliviér', 'Phil', 'Brian', 'Charles',
'Colin', 'Bob', 'Peaches', 'Buddy', 'Molly', 'Leo', 'Richie',
'Brockly', 'Kingsley', 'Edgar', 'Cody', 'Amber', 'Tupawc',
'Horace', 'Glacier', 'Asher', 'Carly', 'Apollo', 'Ulysses',
'Chuck', 'Todo', 'Brody', 'Kreg', 'Joey', 'Taco', 'Tess', 'Sarge',
'Panda', 'Ozzy', 'Reggie', 'Goliath', 'Toby', 'CeCe', 'Percy',
'Moofasa', 'Cheesy', 'Griswold', 'Alice', 'Ozzie', 'Aspen',
'Champ', 'Darrel', 'Lulu', 'Perry', 'Bruiser', 'Oreo', 'Jerry',
'Rocky', 'Brooks', 'Lorelei', 'Hammond', 'Flávio', 'Crimson',
'Theodore', 'Bobby', 'Griffin', 'Sebastian', 'Tiger', 'Lupe',
'Kulet', 'Tino', 'Obi', 'Pippa', 'Wyatt', 'Berb', 'Walker',
'Billy', 'Karma', 'Vince', 'Cecil', 'Olaf', 'Watson', 'Rodney',
'Tater', 'Gunner', 'Beemo', 'Sora', 'Staniel', 'Milo', 'Lacy',
'Malikai', 'Tucker', 'Kathmandu', 'Cassie', 'Clarkus', 'Keurig',
'Harper', 'Jiminus', 'Rufus', 'Farfle', 'Remington', 'Cooper',
'Jebberson', 'River', 'Bobble', 'Bear', 'Smokey', 'Coco', 'Mister',
'Ellie', 'Stephanus', 'Bluebert', 'Jennifur', 'Link', 'Ebby',
'Barclay', 'Suki', 'Bubbles', 'Alexanderson', 'Bowie', 'Carper',
'Lucy', 'Sid', 'Harnold', 'Zeus', 'Kane', 'Sunny', 'Stubert',
'Opie', 'Lance', 'Piper', 'Kanu', 'Thumas', 'Travis', 'Curtis',
'Calbert', 'Siba', 'Michelangelope', 'Nico', 'Oscar', 'Bertson',
'Roosevelt', 'Reagan', 'Charl', 'Miley', 'Fillup', 'Nala', 'Coops',
'Eazy', 'Dotsy', 'Murphy', 'Kaia', 'Vincent', 'Cuddles', 'Reptar',
'Rosie', 'Oakley', 'Charlie', 'Bentley', 'Blipson', 'Ole',
'Carter', 'Doug', 'Lily', 'Maximus', 'Jessiga', 'Claude', 'Daniel',
'Katie', 'Crouton', 'Chet', 'Chesterson', 'Terrenth', 'Bode',
'Lucia', 'Zara', 'Max', 'Dexter', 'Kara', 'Bisquick', 'Yoda',
'Coopson', 'Bilbo', 'Rilo', 'Fiji', 'Rambo', 'Chip', 'Socks',
'Emmie', 'Sammy', 'Penelope', 'Colby', 'Jett', 'Holly', 'Herm',
'Sparky', 'Lou', 'Tanner', 'Malcolm', 'Julius', 'Anthony', 'Amy',
'Edd', 'Bloo', 'Pluto', 'Ester', 'Danny', 'Jeffrie', 'Gin',
'Traviss', 'Creg', 'Antony', 'Trigger', 'Mason', 'Andy', 'Maggie',
'Sage', 'Pip', 'Scruffers', 'Cal', 'Ridley', 'Snickers', 'Pippin',
'Franq', 'Jackie', 'Darby', 'Taz', 'Caryl', 'Leonidas', 'Bradley',
'Alejandro', 'Reginald', 'JD', 'Marley', 'Mark', 'Dylan', 'Mia',
'Batdog', 'Mojo', 'Gizmo', 'Patch', 'Tuco', 'Ed', 'Winifred',
'Kevon', 'Banditt', 'Bobb', 'Amélie', 'Ruffles', 'Lambeau',
'Jaycob', 'Jeremy', 'Chaz', 'Ruby', 'Bernie', 'Harrison',
'Terrance', 'Samsom', 'Jaspers', 'Clarq', 'Hanz', 'Smittens',
'Torque', 'Jareld', 'Sophie', 'DayZ', 'Jo', 'Gòrdón', 'Spark',
'Marvin', 'Kallie', 'Jomathan', 'Maks', 'Timofy', 'Zeek', 'Ralf',
'Paull', 'Sully', 'Ben', 'Tommy', 'Liam', 'Randall', 'Winston',
'Fabio', 'Wally', 'Sandra', 'Butters', 'Larry', 'Nigel', 'Peanut',
'Scooter', 'Damon', 'Herb', 'Willy', 'Sam', 'Hank', 'Daisy',
'Raphael', 'Tessa', 'Dug', 'Saydee', 'Billl', 'Ronduh', 'Kollin',
'Keith', 'Linda', 'Skye', 'Shawwn', 'Louie', 'Kloey', 'Andru',
'Julio', 'Kirk', 'Neptune', 'Vinnie', 'Karl', 'Tyrus', 'Chuq',
'Juckson', 'Ash', 'Duke', 'Lenny', 'Buddah', 'Donny', 'Striker',
'Bert', 'Tassy', 'Tug', 'Chompsky', 'Rubio', 'Wilson', 'Hurley',
'William', 'Mike', 'Hunter', 'Sabertooth', 'Willie', 'Bruce',
'Evy', 'Dash', 'Tango', 'Axel', 'Sandy', 'Ralph', 'Jessifer',
'Crumpet', 'Jerome', 'Crystal', 'Grizz', 'Humphrey', 'Kendall',
'Shnuggles', 'Dot', 'Riley', 'Aiden', 'Acro', 'Jimison', 'Terry',
'Gustaf', 'Pumpkin', 'Kenzie', 'Mac', 'Frankie', 'Steve',
'Tedders', 'Laela', 'Moe', 'Arnold', 'Bobbay', 'Henry', 'Kenny',
'Chesney', 'Jonah', 'Ava', 'Rodman', 'Jeb', 'Patrick', 'Mitch',
'Charleson', 'Ralphé', 'Sonny', 'Bo', 'Django', 'Shooter', 'Sansa',
'Major', 'Stephan', 'Ito', 'Wallace', 'Kyro', 'Gus', 'Lennon',
'Severus', 'Snicku', 'Tyr', 'Pancake', 'Iroh', 'Winnie',
'Longfellow', 'Chef', 'Mauve', 'Ronnie', 'Pavlov', 'Akumi',
'Comet', 'Dudley', 'Moose', 'Binky', 'Timber', 'Chloe', 'Tebow',
'Strudel', 'Titan', 'Ken', 'Autumn', 'Florence', 'Tom', 'Wafer',
'Finn', 'Anna', 'Jazzy', 'Eugene', 'Olivia', 'Augie', 'Halo',
'Mary', 'Brandi', 'Swagger', 'Bauer', 'Baron', 'Layla', 'Eleanor',
'Atlas', 'Sky', 'Oshie', 'Alf', 'Yogi', 'Timmy', 'Cali', 'Godi',
'Loomis', 'Mairi', 'Stormy', 'Hero', 'Doc', 'Dallas', 'Hercules',
'Blue', "O'Malley", 'Solomon', 'Wesley', 'Strider', 'Mya', 'Jay',
'Mattie', 'BeBe', 'Monster', 'Robin', 'Nida', 'Benji', 'Newt',
'Maude', 'Juno', 'Remus', 'Moreton', 'Fiona', 'Dobby', 'Clark',
'Nimbus', 'Mack', 'Levi', 'Mabel', 'Dale', 'Logan', 'Rory',
'Butter', 'Stella', 'Rizzy', 'Brownie', 'Eli', 'Happy', 'Mosby',
'Misty', 'Howie', 'Noosh', 'Kyle', 'Snoop', 'Iggy', 'Sailor',
'General', 'Wiggles', 'Benny', 'Rumpole', 'Einstein', 'Arya',
'Marlee', 'Cermet', 'Jarod', 'Indie', 'Tycho', 'Margo', 'Luna',
'Brady', 'Odin', 'Jarvis', 'Vixen', 'Tuck', 'Furzey', 'Cannon',
'Rontu', 'Georgie', 'Callie', 'Boomer', 'Lili', 'Harold', 'Dewey',
'Clifford', 'Rumble', 'Lassie', 'Kody', 'Meatball', 'Paisley',
'Thor', 'Milky', 'Jordy', 'Lorenzo', 'Burt', 'Hobbes', 'Jersey',
'Zooey', 'Quinn', 'Belle', 'Albus', 'Ike', 'Pawnd', 'Ralphie',
'Boots', 'Mo', 'Brutus', 'Alexander', 'Beebop', 'Mutt', 'Sailer',
'Sweet', 'Flash', 'Harlso', 'Crawford', 'Lilly', 'Mookie', 'Arlo',
'Odie', 'Sojourner', 'Monty', 'Maddie', 'Dawn', 'Tobi', 'Dutch',
'Kuyu', 'Eevee', 'Orion', 'Willow', 'Poppy', 'Bronte', 'Lipton',
'Sunshine', 'Corey', 'Harvey', 'Brandonald', 'Blanket', 'Boston',
'Geno', 'Lilli', 'Spencer', 'Leonard', 'Beckham', 'Gert', 'Sugar',
'Devón', 'Stark', 'Beya', 'Albert', 'Bonaparte', 'Sephie', 'Rose',
'Theo', 'Emma', 'Kirby', 'Fido', 'Kayla', 'Maxaroni', 'Rocco',
'Bell', 'Arlen', 'Meyer', 'Finley', 'Gilbert', 'Tripp', 'Cora',
'Jameson', 'Spanky', 'Lilah', 'Atticus', 'Stewie', 'Arnie',
'Dietrich', 'Shelby', 'Abby', 'Shiloh', 'Gustav', 'Dex', 'Huxley',
'Bookstore', 'Grizzie', 'Tayzie', 'Ace', 'Chase', 'Flurpson',
'Dixie', 'Coleman', 'Fizz', 'Dakota', 'Davey', 'Enchilada',
'Raymond', 'Cilantro', 'Ziva', 'DonDon', 'Ollie', 'Carbon',
'Stefan', 'Al', 'Pupcasso', 'Puff', 'Karll', 'Blitz', 'Bungalo',
'Jangle', 'Schnitzel', 'Shakespeare', 'Berkeley', 'Loki',
'Heinrich', 'Sprinkles', 'Ivar', 'Sprout', 'Bloop', 'Fred', 'Grey',
'Klein', 'Kota', 'Aubie', 'Storkson', 'Remy', 'Gromit', 'Chadrick',
'Nollie', 'Rorie', 'Simba', 'Glenn', 'Leela', 'Brat', 'Hermione',
'Tove', 'Rupert', 'Philbert', 'Ralpher', 'Tito', 'Chevy',
'Aldrick', 'Angel', 'Brudge', 'Livvie', 'Shadoe', 'Cupid',
'Napolean', 'Doobert', 'Meera', 'Smiley', 'Barney', 'Astrid',
'Mimosa', 'Pete', 'Rhino', 'Emanuel', 'Miguel', 'Wishes', 'Divine',
'Sobe', 'Chubbs', 'Anakin', 'Sampson', 'Deacon', 'Kellogg',
'Rizzo', 'Pilot', 'Sundance', 'Duchess', 'Lenox', 'Blu', 'Petrick',
'Grizzwald', 'Godzilla', 'Rooney', 'Ambrose', 'Buckley', 'Marty',
'Finnegus', 'Mona', 'Birf', 'Dido', 'Adele', 'Huck', 'Trevith',
'Chuckles', 'Clyde', 'Hector', 'Banjo', 'Laika', 'Toffee',
'Brandy', 'Kawhi', 'Bones', 'Hubertson', 'Gerbald', 'Craig',
'Rueben', 'Lillie', 'Dwight', 'Ashleigh', 'Rinna', 'Luther',
'Pinot', 'Baloo', 'Chelsea', 'Zoe', 'Pickles', 'Jamesy', 'Obie',
'Kaiya', 'Rover', 'Herschel', 'Bubba', 'Sierra', 'Jeffri', 'Grady',
'Norman', 'Cheryl', 'Scott', 'Schnozz', 'Fletcher', 'Eve', 'Jazz',
'Rolf', 'Hamrick', 'Pepper', 'Edmund', 'Aqua', 'Roscoe', 'Lizzie',
'Ralphson', 'Willem', 'Blakely', 'Trip', 'Kona', 'Rufio', 'Ginger',
'Gidget', 'Superpup', 'Mollie', 'Millie', 'Zuzu', 'Jed', 'Pablo',
'Stuart', 'Tonks', 'Bayley', 'Diogi', 'Betty', 'Shikha', 'Snoopy'],
dtype=object)
twitter_archive_clean.name.value_counts()
Oliver 11 Charlie 11 Lucy 10 Cooper 10 Penny 9 Tucker 9 Sadie 8 Winston 8 Toby 7 Daisy 7 Lola 7 Bella 6 Jax 6 Bo 6 Koda 6 Stanley 6 Louis 5 Dave 5 Rusty 5 Milo 5 Leo 5 Oscar 5 Buddy 5 Chester 5 Bailey 5 Scout 5 Finn 4 Archie 4 Scooter 4 Duke 4 Bentley 4 Phil 4 Brody 4 Chip 4 Clarence 4 Jerry 4 George 4 Dexter 4 Gary 4 Gus 4 Reggie 4 Derek 4 Alfie 4 Bear 4 Maggie 4 Sophie 4 Larry 4 Oakley 4 Winnie 4 Clark 4 Cassie 4 Jack 4 Sebastian 3 Rosie 3 Ellie 3 Waffles 3 Wyatt 3 Louie 3 Malcolm 3 Wallace 3 Jeffrey 3 Vincent 3 Riley 3 Moose 3 Max 3 Earl 3 Hank 3 Ruby 3 Bruce 3 Zeke 3 Lily 3 Mia 3 Shadow 3 Wilson 3 Samson 3 Sunny 3 Charles 3 Walter 3 Reese 3 Kyle 3 Calvin 3 Boomer 3 Gerald 3 Gizmo 3 Sammy 3 Loki 3 Steven 3 Zoey 3 Olive 3 Nala 3 Jimothy 3 Otis 3 Beau 3 Piper 2 Elliot 2 Albus 2 Penelope 2 Percy 2 Sugar 2 Juno 2 Kirby 2 Chuckles 2 Lennon 2 Linda 2 Luna 2 Jiminy 2 Luca 2 Smokey 2 Finley 2 Remington 2 Sam 2 Bernie 2 Lincoln 2 Ash 2 Moe 2 Kreg 2 Oliviér 2 Frankie 2 Lorenzo 2 Alice 2 Aspen 2 Atlas 2 Olivia 2 Lenny 2 Jesse 2 Nelly 2 Wally 2 Yogi 2 Roosevelt 2 Jackson 2 Watson 2 Brad 2 Zeus 2 Churlie 2 Colby 2 Titan 2 Gabe 2 Jimison 2 Paisley 2 Mister 2 Reginald 2 Panda 2 Dash 2 Franklin 2 Ted 2 Fiona 2 Belle 2 Axel 2 Misty 2 Neptune 2 Tyr 2 Keith 2 Jeph 2 Sarge 2 Cash 2 Terry 2 Marley 2 Pickles 2 Lou 2 Raymond 2 Eli 2 Trooper 2 Baxter 2 Romeo 2 Kilo 2 Dakota 2 Maxaroni 2 Crystal 2 Herm 2 Cody 2 Herald 2 Bob 2 Rocky 2 Frank 2 Opal 2 Kevin 2 Calbert 2 Chipson 2 Griffin 2 Sandy 2 Phineas 2 Sansa 2 Chet 2 Carl 2 Doug 2 Peaches 2 Atticus 2 Solomon 2 Doc 2 Curtis 2 Phred 2 Ava 2 Thumas 2 Klevin 2 Flávio 2 Albert 2 Odie 2 Bubbles 2 Coco 2 Hunter 2 Harold 2 Maximus 2 Sampson 2 Kenneth 2 Ollie 2 Abby 2 Bisquick 2 Benedict 2 Theodore 2 Kreggory 2 CeCe 2 Rufus 2 Hammond 2 Patrick 2 Rory 2 Indie 2 Hobbes 2 Benji 2 Coops 2 Cupcake 2 Django 2 Pippa 2 Kirk 1 Edmund 1 Maxwell 1 Fynn 1 Clarkus 1 Jangle 1 Dudley 1 Alexander 1 Monster 1 Moofasa 1 Lili 1 Jimbo 1 Dug 1 Remus 1 Dale 1 Lenox 1 Willem 1 Spanky 1 Kathmandu 1 Dwight 1 Eugene 1 Cilantro 1 Andy 1 Brandonald 1 Angel 1 Link 1 Filup 1 Orion 1 Superpup 1 Lambeau 1 Dutch 1 Hanz 1 Fizz 1 Blakely 1 Snoopy 1 Spark 1 Bradlay 1 Mollie 1 Wiggles 1 Ozzy 1 Ziva 1 Paull 1 Josep 1 Karll 1 Jett 1 Vinscent 1 Brat 1 Lucia 1 Blitz 1 Halo 1 Michelangelope 1 Tanner 1 Petrick 1 Ike 1 Klein 1 Genevieve 1 Barney 1 Apollo 1 Roscoe 1 Lucky 1 Jareld 1 Tango 1 Jeb 1 Toffee 1 Flurpson 1 Einstein 1 Lugan 1 Damon 1 Sky 1 Mitch 1 Howie 1 Kollin 1 Acro 1 Opie 1 Dewey 1 Carper 1 Akumi 1 Dante 1 Dawn 1 Cupid 1 Gert 1 Eleanor 1 Mona 1 Lorelei 1 Mairi 1 Jay 1 Nollie 1 Karma 1 Stephan 1 Zoe 1 Ronduh 1 Rhino 1 Ebby 1 Tedrick 1 Leonard 1 Gustaf 1 Ambrose 1 Remy 1 Mya 1 Donny 1 Miguel 1 Gunner 1 Terrenth 1 Jessiga 1 Harper 1 O'Malley 1 Dunkin 1 Pavlov 1 Sojourner 1 Tycho 1 Sundance 1 Daniel 1 Benny 1 Tupawc 1 Schnitzel 1 Franq 1 Georgie 1 DonDon 1 Bluebert 1 Bruno 1 Glacier 1 Odin 1 Cleopatricia 1 Poppy 1 Tessa 1 Hermione 1 Snicku 1 Ralphus 1 Amélie 1 Liam 1 Duchess 1 Ralpher 1 Snoop 1 Julius 1 Leonidas 1 Spencer 1 Laika 1 Harvey 1 Storkson 1 Trigger 1 Tove 1 Perry 1 Mark 1 Nigel 1 Herschel 1 Pumpkin 1 Shelby 1 Hubertson 1 Stewie 1 Vince 1 Ralf 1 Emmy 1 Torque 1 Betty 1 Mimosa 1 Bubba 1 Cal 1 Willy 1 Emmie 1 Peanut 1 Amy 1 Edd 1 Bronte 1 Ralphson 1 Ron 1 Gilbert 1 Berb 1 Sobe 1 Jed 1 Ulysses 1 Lassie 1 Hazel 1 Fabio 1 Bruiser 1 Davey 1 Kayla 1 Brian 1 Sailer 1 Crouton 1 Pluto 1 Cheryl 1 Emanuel 1 Jessifer 1 Buckley 1 Henry 1 Grizzwald 1 Chelsea 1 Harlso 1 Timmy 1 Fred 1 Mary 1 Maddie 1 Simba 1 Leela 1 Hurley 1 Griswold 1 Grady 1 Barclay 1 Ken 1 Ester 1 Kody 1 Marvin 1 Chubbs 1 Bloop 1 Carll 1 Lupe 1 Jomathan 1 Mauve 1 Nimbus 1 Clarq 1 Jameson 1 Loomis 1 Billy 1 Gustav 1 Ito 1 Logan 1 Malikai 1 Biden 1 Lipton 1 Chesney 1 Sonny 1 Ace 1 Ricky 1 Bert 1 Jordy 1 Stu 1 Rover 1 Banditt 1 Hector 1 Iggy 1 Norman 1 Siba 1 Mojo 1 Sage 1 Meera 1 Binky 1 Pip 1 Aja 1 Jennifur 1 Jiminus 1 Kaiya 1 Kona 1 Thor 1 Canela 1 Corey 1 Beckham 1 Amber 1 Nida 1 Covach 1 Strider 1 Crimson 1 Anakin 1 Keet 1 Chef 1 Marty 1 Stella 1 Maya 1 Kingsley 1 Bodie 1 Gòrdón 1 Timofy 1 Fletcher 1 Gidget 1 Brandy 1 Longfellow 1 Kramer 1 Ronnie 1 Tiger 1 Tayzie 1 Kallie 1 Lilli 1 Happy 1 Swagger 1 Champ 1 Frönq 1 Jim 1 Charl 1 Pilot 1 Harry 1 Dylan 1 Andru 1 Goose 1 Carter 1 Callie 1 Willie 1 Eriq 1 Shawwn 1 Humphrey 1 Traviss 1 Tug 1 Godzilla 1 BeBe 1 Chase 1 Bobby 1 Philbert 1 Ralph 1 Lance 1 Zooey 1 Mac 1 Dobby 1 Boston 1 Todo 1 Smiley 1 Reptar 1 Levi 1 Mabel 1 Rumble 1 Mattie 1 Rumpole 1 Gerbald 1 Herb 1 Taco 1 Deacon 1 Ginger 1 Stuart 1 Lulu 1 Tripp 1 Autumn 1 Shakespeare 1 Jebberson 1 Ozzie 1 Tyrone 1 Rose 1 General 1 Tassy 1 Clybe 1 Rilo 1 DayZ 1 Bones 1 Mookie 1 Julio 1 Jaspers 1 Patch 1 Iroh 1 Arnold 1 Tino 1 Enchilada 1 Skye 1 Bayley 1 Cannon 1 Rupert 1 Kanu 1 Livvie 1 Timber 1 Sunshine 1 Chaz 1 Major 1 Brandi 1 Hamrick 1 Zuzu 1 Pete 1 Fiji 1 Mo 1 Shiloh 1 Sully 1 Vinnie 1 Sandra 1 Blanket 1 Mosby 1 Nugget 1 Rontu 1 Gromit 1 Farfle 1 Ivar 1 Beemo 1 Tedders 1 Trip 1 Mason 1 Layla 1 Jonah 1 Hercules 1 Jamesy 1 Jersey 1 Baloo 1 Boots 1 Evy 1 Gordon 1 Erik 1 Horace 1 Kawhi 1 Jarvis 1 Taz 1 Goliath 1 Kenny 1 Brockly 1 Clyde 1 Quinn 1 Darrel 1 Furzey 1 Stormy 1 Rodman 1 Sabertooth 1 Pupcasso 1 Rorie 1 Eevee 1 Butter 1 Shooter 1 Birf 1 Stefan 1 Burt 1 Batdog 1 Rinna 1 Stubert 1 Dex 1 Kendall 1 Jaycob 1 Samsom 1 Rueben 1 Jeffrie 1 Darla 1 Lizzie 1 Chuq 1 Dotsy 1 Cecil 1 Molly 1 Bauer 1 Pipsy 1 Kevon 1 Rodney 1 Terrance 1 Chloe 1 Sparky 1 Lilly 1 Devón 1 Pepper 1 JD 1 Pinot 1 Heinrich 1 Christoper 1 Sweet 1 Lolo 1 Noosh 1 Wishes 1 Tebow 1 Zeek 1 Rizzy 1 Smittens 1 Grizz 1 Tater 1 Kane 1 Reagan 1 Tito 1 Steve 1 Pippin 1 Kuyu 1 Aiden 1 Philippe 1 Ralphie 1 Alejandro 1 Harnold 1 Olaf 1 Winifred 1 Maks 1 Tess 1 Arlen 1 Trevith 1 Bode 1 Bobb 1 Robin 1 Coopson 1 Stephanus 1 Jo 1 Meatball 1 Brownie 1 Luther 1 Eazy 1 Tyrus 1 Comet 1 Carly 1 Tickles 1 Cora 1 Dietrich 1 Chesterson 1 Aldrick 1 Beya 1 Billl 1 Mack 1 Emma 1 Chompsky 1 Venti 1 Kloey 1 Brudge 1 Saydee 1 Millie 1 Chadrick 1 Augie 1 Kaia 1 Oshie 1 Crumpet 1 Nico 1 Adele 1 Raphael 1 Chuck 1 Dot 1 Tuck 1 Glenn 1 Finnegus 1 Chevy 1 Coleman 1 Crawford 1 Ed 1 Randall 1 Lillie 1 Dixie 1 Richie 1 Tom 1 Antony 1 Laela 1 Caryl 1 Sprinkles 1 Blipson 1 Jackie 1 Kobe 1 Flash 1 Skittles 1 Vixen 1 Sailor 1 Brady 1 Ben 1 Florence 1 Divine 1 Arlo 1 Tommy 1 Snickers 1 Gin 1 Charleson 1 Moreton 1 Sephie 1 Claude 1 Carbon 1 Kenzie 1 Edgar 1 Marlee 1 Grey 1 Creg 1 Cupit 1 Ruffles 1 Blue 1 Ridley 1 Freddery 1 Kulet 1 Katie 1 Kyro 1 Rubio 1 Noah 1 Shikha 1 Wesley 1 Dido 1 Bradley 1 Timison 1 Butters 1 Tobi 1 Jeffri 1 Cermet 1 Asher 1 Karl 1 Alfy 1 Godi 1 Willow 1 Theo 1 Anthony 1 Arya 1 Strudel 1 Bloo 1 Suki 1 Jerome 1 Tuco 1 Pablo 1 Pubert 1 Monkey 1 Aqua 1 Bowie 1 Geoff 1 Monty 1 Sierra 1 Maude 1 Cali 1 Shadoe 1 Cheesy 1 Kota 1 Severus 1 Bobbay 1 Bobble 1 Oreo 1 Grizzie 1 Brooks 1 Maisey 1 Naphaniel 1 Alexanderson 1 Shaggy 1 Bookstore 1 Rey 1 Kara 1 Fillup 1 Doobert 1 Scruffers 1 Margo 1 Jeremy 1 Cedrick 1 Rooney 1 Schnozz 1 Dallas 1 Marq 1 Miley 1 Rocco 1 William 1 Napolean 1 Yoda 1 Hall 1 Milky 1 Brutus 1 Banjo 1 Duddles 1 Big Jumpy Rat 1 Walker 1 Mike 1 Jazz 1 Striker 1 Lacy 1 Derby 1 Sora 1 Danny 1 Puff 1 Obi 1 Holly 1 Arnie 1 Juckson 1 Fido 1 Zara 1 Berkeley 1 Travis 1 Joshwa 1 Bertson 1 River 1 Bilbo 1 Colin 1 Fwed 1 Diogi 1 Pawnd 1 Jarod 1 Alf 1 Al 1 Kellogg 1 Scott 1 Rizzo 1 Lilah 1 Stark 1 Huck 1 Rufio 1 Dook 1 Eve 1 Koko 1 Pancake 1 Shnuggles 1 Huxley 1 Kial 1 Beebop 1 Wafer 1 Geno 1 Harrison 1 Rolf 1 Baron 1 Bonaparte 1 Clifford 1 Aubie 1 Obie 1 Bungalo 1 Keurig 1 Bell 1 Blu 1 Ralphé 1 Ole 1 Jockson 1 Buddah 1 Newt 1 Mingus 1 Mutt 1 Tonks 1 Sprout 1 Meyer 1 Ashleigh 1 Durg 1 Socks 1 Hero 1 Tilly 1 Cuddles 1 Astrid 1 Jazzy 1 Craig 1 Rambo 1 Anna 1 Joey 1 Staniel 1 Darby 1 Sid 1 Murphy 1 Name: name, dtype: int64
twitter_archive_clean.shape
(1994, 12)
len(twitter_archive_clean.query('rating_numerator < 10'))
414
twitter_archive_clean.query('rating_numerator < 10').loc[:,['text','rating_numerator']]
| text | rating_numerator | |
|---|---|---|
| 1918 | This is Biden. Biden just tripped... 7/10 | 7 |
| 1915 | Exotic dog here. Long neck. Weird paws. Obsessed with bread. Waddles. Flies sometimes (wow!). Very happy dog. 6/10 | 6 |
| 1913 | This is Reese and Twips. Reese protects Twips. Both think they're too good for seat belts. Simply reckless. 7/10s | 7 |
| 1911 | Two dogs in this one. Both are rare Jujitsu Pythagoreans. One slightly whiter than other. Long legs. 7/10 and 8/10 | 7 |
| 1910 | This is Philippe from Soviet Russia. Commanding leader. Misplaced other boot. Hung flag himself. 9/10 charismatic af | 9 |
| 1907 | This is Dook & Milo. Dook is struggling to find who he really is and Milo is terrified of what that might be. 8/10s | 8 |
| 1904 | This is Frank (pronounced "Fronq"). Too many boxing gloves, not enough passion. Frank is a lover not a fighter. 8/10 | 8 |
| 1903 | This is a southwest Coriander named Klint. Hat looks expensive. Still on house arrest :(\n9/10 | 9 |
| 1901 | Here is George. George took a selfie of his new man bun and that is downright epic. (Also looks like Rand Paul) 9/10 | 9 |
| 1900 | Never seen dog like this. Breathes heavy. Tilts head in a pattern. No bark. Shitty at fetch. Not even cordless. 1/10 | 1 |
| 1899 | What a dog to start the day with. Very calm. Likes to chill by pond. Corkscrews sticking out of head. Obedient. 7/10 | 7 |
| 1897 | This is Calvin. He is a Luxembourgian Mayo. Having issues with truck. Has it under control tho. 9/10 responsible af | 9 |
| 1896 | This is a rare Hungarian Pinot named Jessiga. She is either mid-stroke or got stuck in the washing machine. 8/10 | 8 |
| 1895 | Super rare dog. Endangered (?). Thinks it's funny. Mocks everything I say. Colorful af. Has wings (dope). 9/10 | 9 |
| 1894 | Dogs only please. Small cows and other non canines will not be tolerated. Sick tattoos tho 8/10 | 8 |
| 1919 | This is Fwed. He is a Canadian Asian Taylormade. Was having a blast until pink spiky football attacked. 8/10 | 8 |
| 1948 | Unfamiliar with this breed. Ears pointy af. Won't let go of seashell. Won't eat kibble. Not very fast. Bad dog 2/10 | 2 |
| 1947 | This is Jockson. He is a Pinnacle Sagittarius. Fancy bandana. Enjoys lightly sucking on hot dog in nature. 8/10 | 8 |
| 1946 | This is Jeph. He is a German Boston Shuttlecock. Enjoys couch. Lost body during French Revolution. True hero 9/10 | 9 |
| 1943 | My goodness. Very rare dog here. Large. Tail dangerous. Kinda fat. Only eats leaves. Doesn't come when called 3/10 | 3 |
| 1940 | This is Klevin. He laughs a lot. Very cool dog. 9/10 | 9 |
| 1937 | Here we have a Hufflepuff. Loves vest. Eyes wide af. Flaccid tail. Matches carpet. Always a little blurry. 8/10 | 8 |
| 1935 | This is Clybe. He is an Anemone Valdez. One ear works. Can look in 2 different directions at once. Tongue slip. 7/10 | 7 |
| 1928 | This is Clarence. His face says he doesn't want to be a donkey, but his tail is super pumped about it. 9/10 | 9 |
| 1927 | These are strange dogs. All have toupees. Long neck for dogs. In a shed of sorts? Work in groups? 4/10 still petable | 4 |
| 1926 | This is a Dasani Kingfisher from Maine. His name is Daryl. Daryl doesn't like being swallowed by a panda. 8/10 | 8 |
| 1921 | This is Genevieve. She is a golden retriever cocktail mix. Comfortable close to wall. Shows no emotions. 9/10 | 9 |
| 1890 | This is a Shotokon Macadamia mix named Cheryl. Sophisticated af. Looks like a disappointed librarian. Shh (lol) 9/10 | 9 |
| 1887 | This is Tedrick. He lives on the edge. Needs someone to hit the gas tho. Other than that he's a baller. 10&2/10 | 2 |
| 1884 | This is Cleopatricia. She is a northern Paperback Maple. Set up hammock somehow. 9/10 would chill in hammock with | 9 |
| 1883 | Wow. Armored dog here. Ready for battle. Face looks dangerous. Not very loyal. Lil dog on back havin a blast. 5/10 | 5 |
| 1881 | This is Jiminy. He has always wanted to be a cheerleader. Can jump high enough to get on other dog. Go Jiminy. 9/10 | 9 |
| 1880 | This dog resembles a baked potato. Bed looks uncomfortable. No tail. Comes with butter tho. 3/10 petting still fun | 3 |
| 1879 | This is Alfie. He's that one hypocritical gym teacher who made you run laps. Great posture. Cool bench. 6/10 | 6 |
| 1878 | This lil pup is Oliver. Hops around. Has wings but doesn't fly (lame). Annoying chirp. Won't catch tennis balls 2/10 | 2 |
| 1877 | Fun dogs here. Top one clearly an athlete. Bottom one very stable. Not very soft tho. 9/10s would still cuddle both | 9 |
| 1876 | This is a Trans Siberian Kellogg named Alfonso. Huge ass eyeballs. Actually Dobby from Harry Potter. 7/10 | 7 |
| 1950 | This is Josep. He is a Rye Manganese mix. Can drive w eyes closed. Very irresponsible. Menace on the roadways. 5/10 | 5 |
| 1874 | This is Ron. Ron's currently experiencing a brain freeze. Damn it Ron. 8/10 | 8 |
| 1953 | This is Christoper. He is a spotted Penne. Can easily navigate stairs. 8/10 | 8 |
| 1980 | Here we have a well-established sunblockerspaniel. Lost his other flip-flop. 6/10 not very waterproof | 6 |
| 1979 | This appears to be a Mongolian Presbyterian mix. Very tired. Tongue slip confirmed. 9/10 would lie down with | 9 |
| 1978 | Can stand on stump for what seems like a while. Built that birdhouse? Impressive. Made friends with a squirrel. 8/10 | 8 |
| 1976 | Not familiar with this breed. No tail (weird). Only 2 legs. Doesn't bark. Surprisingly quick. Shits eggs. 1/10 | 1 |
| 1973 | This is an Albanian 3 1/2 legged Episcopalian. Loves well-polished hardwood flooring. Penis on the collar. 9/10 | 1 |
| 1972 | This is a funny dog. Weird toes. Won't come down. Loves branch. Refuses to eat his food. Hard to cuddle with. 3/10 | 3 |
| 1971 | This is an extremely rare horned Parthenon. Not amused. Wears shoes. Overall very nice. 9/10 would pet aggressively | 9 |
| 1969 | Here we have a mixed Asiago from the Galápagos Islands. Only one ear working. Big fan of marijuana carpet. 8/10 | 8 |
| 1968 | Unique dog here. Very small. Lives in container of Frosted Flakes (?). Short legs. Must be rare 6/10 would still pet | 6 |
| 1966 | Oh goodness. A super rare northeast Qdoba kangaroo mix. Massive feet. No pouch (disappointing). Seems alert. 9/10 | 9 |
| 1965 | This is a southern Vesuvius bumblegruff. Can drive a truck (wow). Made friends with 5 other nifty dogs (neat). 7/10 | 7 |
| 1964 | This is quite the dog. Gets really excited when not in water. Not very soft tho. Bad at fetch. Can't do tricks. 2/10 | 2 |
| 1961 | Here we have an Austrian Pulitzer. Collectors edition. Levitates (?). 7/10 would garden with | 7 |
| 1960 | Oh boy what a pup! Sunglasses take this one to the next level. Weirdly folds front legs. Pretty big. 6/10 | 6 |
| 1958 | Here we see a lone northeastern Cumberbatch. Half ladybug. Only builds with bricks. Very confident with body. 7/10 | 7 |
| 1957 | This is Scout. She is a black Downton Abbey. Isn't afraid to get dirty. 9/10 nothing bad to say | 9 |
| 1955 | This is Jimothy. He is a Botwanian Gouda. Can write (impressive). Very erect tail. Still looking for hoco date. 9/10 | 9 |
| 1954 | Cool dog. Enjoys couch. Low monotone bark. Very nice kicks. Pisses milk (must be rare). Can't go down stairs. 4/10 | 4 |
| 1982 | Here we have a northern speckled Rhododendron. Much sass. Gives 0 fucks. Good tongue. 9/10 would caress sensually | 9 |
| 1984 | Here is the Rand Paul of retrievers folks! He's probably good at poker. Can drink beer (lol rad). 8/10 good dog | 8 |
| 1952 | This is a golden Buckminsterfullerene named Johm. Drives trucks. Lumberjack (?). Enjoys wall. 8/10 would hug softly | 8 |
| 1992 | This is a western brown Mitsubishi terrier. Upset about leaf. Actually 2 dogs here. 7/10 would walk the shit out of | 7 |
| 1991 | Here is a very happy pup. Big fan of well-maintained decks. Just look at that tongue. 9/10 would cuddle af | 9 |
| 1990 | This is a purebred Piers Morgan. Loves to Netflix and chill. Always looks like he forgot to unplug the iron. 6/10 | 6 |
| 1989 | Here we have a 1949 1st generation vulpix. Enjoys sweat tea and Fox News. Cannot be phased. 5/10 | 5 |
| 1987 | This is an odd dog. Hard on the outside but loving on the inside. Petting still fun. Doesn't play catch well. 2/10 | 2 |
| 1985 | My oh my. This is a rare blond Canadian terrier on wheels. Only $8.98. Rather docile. 9/10 very rare | 9 |
| 39 | This is Bella. She hopes her smile made you smile. If not, she is also offering you her favorite monkey. 13.5/10 | 5 |
| 3226 | Meet Clarence. He does parkour. 8/10 very talented dog | 8 |
| 3223 | We normally don't rate birds but I feel bad cos this one forgot to fly south for the winter. 9/10 just wants a bath | 9 |
| 3220 | Say hello to Chipson. He's aerodynamic af. No eyes (devastating). 9/10 would make sure he didn't bump into stuff | 9 |
| 3214 | This is Ricky. He's being escorted out of the dog park for talking shit about the other dogs. 8/10 not cool Ricky | 8 |
| 3211 | This is Durg. He's trying to conquer his fear of trampolines. 9/10 it's not working | 9 |
| 3203 | Stop sending in lobsters. This is the final warning. We only rate dogs. Thank you... 9/10 | 9 |
| 3256 | Strange pup here. Easily manipulated. Rather inbred. Sharp for a dog. Appears uncomfortable. 8/10 would still pet | 8 |
| 3253 | Army of water dogs here. None of them know where they're going. Have no real purpose. Aggressive barks. 5/10 for all | 5 |
| 3250 | Meet Gordon. He's an asshole. 9/10 would still pet | 9 |
| 3229 | Say hello to Brad. His car probably has a spoiler. Tan year round. Likes your insta pic but doesn't text back. 9/10 | 9 |
| 3244 | This is Marq. He stole this car. 7/10 wtf Marq? | 7 |
| 3232 | This is Frönq. He got caught stealing a waffle. Damn it Frönq. 9/10 | 9 |
| 3231 | Meet Pubert. He's a Kerplunk Rumplestilt. Cannot comprehend flower. Flawless tongue. 8/10 would pat head approvingly | 8 |
| 3197 | This is Vinscent. He was just questioned about his recent credit card spending. 8/10 | 8 |
| 3165 | This is Bodie. He's not proud of what he did, but it needed to be done. 9/10 eight days was a pretty good streak tbh | 9 |
| 3158 | Meet Freddery. He's a Westminster Toblerone. Seems to enjoy car rides. 9/10 would pat on the head approvingly | 9 |
| 3157 | What kind of person sends in a pic without a dog in it? So churlish. Neat rug tho 7/10 | 7 |
| 3154 | This is Lola. She realized mid hug that she's not ready for a committed relationship with a teddy bear. 9/10 | 9 |
| 3147 | Meet Brian (pronounced "Kirk"). He's not amused by ur churlish tomfoolery. Once u put him down you're done for. 6/10 | 6 |
| 3146 | This may be the greatest video I've ever been sent. 4/10 for Charles the puppy, 13/10 overall. (Vid by @stevenxx_) | 4 |
| 3140 | Meet Calvin. He's proof that degrees mean absolutely nothing. 8/10 straighten up pup | 8 |
| 3169 | Please only send in dogs. Don't submit other things like this pic of Kenny Chesney in a bathtub. Thank you. 9/10 | 9 |
| 3186 | When bae says they can't go out but you see them with someone else that same night. 5/10 & 10/10 for heartbroken pup | 5 |
| 3183 | This is Brockly. He's an uber driver. Falls asleep at the wheel often. Irresponsible af 8/10 would totally still pet | 8 |
| 3182 | This is Kingsley Wellensworth III. He owns 7 range rovers. Has a cardigan collection. Would rather be sailing. 9/10 | 9 |
| 3347 | This is Asher. He's not wearing a seatbelt or keeping both paws on the wheel. Absolute menace on the roadways. 9/10 | 9 |
| 3345 | This is Apollo. He thought you weren't coming back so he had a mental breakdown. 8/10 we've all been there | 8 |
| 3338 | Unique dog here. Wrinkly as hell. Weird segmented neck. Finger on fire. Doesn't seem to notice. 5/10 might still pet | 5 |
| 3349 | This is Chuck. He's a neat dog. Very flexible. Trapped in a glass case of emotion. Devastatingly unfluffy 3/10 | 3 |
| 3333 | Meet Jax. He's an Iglesias Hufflepoof. Quite the jokester. Takes it too far sometimes. Can be very hurtful. 9/10 | 9 |
| 3332 | This is Todo. He's screaming because he doesn't want to wear his sweater or a seat belt. 9/10 gotta buckle up pup | 9 |
| 3331 | Meet Brody. He's a Downton Abbey Falsetto. Addicted to grating cheese. He says he can stop but we know he can't\n9/10 | 9 |
| 3328 | I know we joke around on here, but this is getting really frustrating. We rate dogs. Not T-Rex. Thank you... 8/10 | 8 |
| 3324 | Meet Taco. He's a speckled Garnier Fructis. Loves to shadow box. Ears out of control. Friend clearly impressed 9/10 | 9 |
| 3352 | Say hello to Panda. He's a Quackadilly Shooster. Not amused by your fake ball throwing motion. 9/10 would hug lots | 9 |
| 3378 | This is Ozzy. He woke up 2 minutes before he had to be ready for the Christmas party. 9/10 classic Ozzy | 9 |
| 3366 | This is Penny. Her tennis ball slowly rolled down her cone and into the pool. 8/10 bad things happen to good puppers | 8 |
| 3365 | This is Brody. That is his chair. He loves his chair. Never leaves it. 9/10 might be stuck actually | 9 |
| 3364 | Say hello to Moofasa. He must be a powerful dog. Fenced in for your protection. Just got his ear pierced. 6/10 | 6 |
| 3361 | This is Cheesy. It's her birthday. She's patiently waiting to eat her party muffin. 9/10 happy birthday pup | 9 |
| 3358 | This is Alice. She's an idiot. 4/10 | 4 |
| 3357 | This is Ozzie. He was doing fine until he lost traction in those festive socks. Now he's tired. 9/10 still killin it | 9 |
| 3356 | I thought I made this very clear. We only rate dogs. Stop sending other things like this shark. Thank you... 9/10 | 9 |
| 3322 | This is Darrel. He just robbed a 7/11 and is in a high speed police chase. Was just spotted by the helicopter 10/10 | 7 |
| 3283 | This is Jerry. He's a neat dog. No legs (tragic). Has more horns than a dog usually does. Bark is unique af. 5/10 | 5 |
| 3275 | For the last time, WE. DO. NOT. RATE. BULBASAUR. We only rate dogs. Please only send dogs. Thank you ...9/10 | 9 |
| 3270 | This is Olive. He's stuck in a sleeve. 9/10 damn it Olive | 9 |
| 3267 | This is Hammond. He's a peculiar pup. Loves long walks. Bark barely audible. Too many legs. 3/10 must be rare | 3 |
| 3291 | This is Bobby. He doesn't give a damn about personal space. Convinced he called shotgun first. 4/10 not the best dog | 4 |
| 3309 | This is Buddy. He's gaining strength. Currently an F4 tornado with wind speeds up to 260mph. Very devastating. 9/10 | 9 |
| 3306 | This is Jiminy. He's not the brightest dog. Needs to lay off the kibble. 5/10 still petable | 5 |
| 3299 | This is Tino. He really likes corndogs. 9/10 | 9 |
| 3298 | Gang of fearless hoofed puppers here. Straight savages. Elevated for extra terror. Front one has killed before 6/10s | 6 |
| 3136 | This is Berb. He just found out that they have made 31 Kidz Bop CD's. Downright terrifying. 7/10 hang in there Berb | 7 |
| 2979 | This is Billy. He sensed a squirrel. 8/10 damn it Billy | 8 |
| 2977 | This is Vince. He's a Gregorian Flapjeck. White spot on legs almost looks like another dog (whoa). 9/10 rad as hell | 9 |
| 2970 | This is Tater. His underbite is fierce af. Doesn't give a damn about your engagement photo. 8/10 | 8 |
| 2959 | What hooligan sent in pictures w/out a dog in them? Churlish af. 3/10 just bc that's a neat fluffy bean bag chair | 3 |
| 2957 | This is Gary. He just wanted to say hi. 9/10 very personable pup | 9 |
| 2984 | This is Klevin. He's addicted to sandwiches (yes a hotdog is a sandwich fight me) It's tearing his family apart 9/10 | 9 |
| 3008 | This dog just brutally murdered a snowman. Currently toying with its nutritious remains 9/10 would totally still pet | 9 |
| 3005 | This is Keurig. He's a rare dog. Laughs like an idiot tho. Head is basically a weapon. Poorly maintained goatee 4/10 | 4 |
| 3003 | This is Jiminus. He's in a tub for some reason. What a jokester. Smh 7/10 churlish af | 7 |
| 2996 | This is Cooper. He basks in the glory of rebellion. 9/10 probably a preteen | 9 |
| 2914 | This is Ebby. She's a Zimbabwean Feta. Embarrassed by ridiculously squishy face. 9/10 would squeeze softly | 9 |
| 2909 | This is Alexanderson. He's got a weird ass birth mark. Dreadful at fetch. Won't eat kibble. 3/10 wtf @Target | 3 |
| 2907 | Meet Bowie. He's listening for underground squirrels. Smart af. Left eye is considerably magical. 9/10 would so pet | 9 |
| 2952 | This is Chester. He's clearly in charge of the other dogs. Weird ass paws. Not fit for fetch. 6/10 would still pet | 6 |
| 2950 | This is Steven. He's inverted af. Also very helpful. Scans anything you want for free. Takes him a while tho. 7/10 | 7 |
| 2936 | This is Thumas. He hates potted plants. 8/10 wtf Thumas | 8 |
| 2933 | This is Benedict. He's a feisty pup. Needs a brushing. Portable af. Looks very angry actually. 4/10 might not pet | 4 |
| 2931 | This is Calbert. He forgot to clear his Google search history. 9/10 rookie mistake Calbert | 9 |
| 3015 | This is Elliot. He's blocking the roadway. Downright rude as hell. Doesn't care that you're already late. 3/10 | 3 |
| 3017 | Meet Shadow. She's tired of the responsibilities associated with being a dog. No longer strives to attain ball. 9/10 | 9 |
| 3101 | Meet Reagan. He's a Persnicketus Derpson. Great with kids. Permanently caught off guard. 8/10 | 8 |
| 3100 | This is Charl. He's a bully. Chucks that dumbbell around like its nothing. Sharp neck. Exceptionally unfluffy. 3/10 | 3 |
| 3093 | This is Dave. He's a tropical pup. Short lil legs (dachshund mix?) Excels underwater, but refuses to eat kibble 5/10 | 5 |
| 3088 | This is Thumas. He covered himself in nanners for maximum camouflage. It didn't work. I can still see u Thumas. 9/10 | 9 |
| 3086 | This is Eazy-E. He's colorful af. Must be rare. Submerged in Sprite (rad). Doesn't perform well when not wet. 6/10 | 6 |
| 3082 | This is Murphy. He's a mini golden retriever. Missing two legs (tragic). Mouth sharp. Looks rather perturbed. 6/10 | 6 |
| 3108 | This is Rusty. He has no respect for POULTRY products. Unbelievable af. 7/10 would still pet | 7 |
| 3130 | These two pirates crashed their ship and don't know what to do now. Very irresponsible of them. Both 9/10 | 9 |
| 3126 | Please stop sending in saber-toothed tigers. This is getting ridiculous. We only rate dogs.\n...8/10 | 8 |
| 3122 | This is Ole. He's not sure how to gravity. 8/10 | 8 |
| 3114 | Meet Beau & Wilbur. Wilbur stole Beau's bed from him. Wilbur now has so much room for activities. 9/10 for both pups | 9 |
| 3110 | This is Claude. He's trying to be seductive but he forgot to turn on the fireplace. 9/10 damn it Claude | 9 |
| 3078 | This is Daniel. He's a neat pup. Exotic af. Custom paws. Leaps unannounced. Would totally pet. 7/10 daaamn Daniel | 7 |
| 3041 | This is Chesterson. He's a Bolivian Scoop Dog. Incredibly portable. Can't bark for shit tho. 7/10 would still pet | 7 |
| 3035 | This is Bode. He's a heavy sleeper. 9/10 | 9 |
| 3025 | This is Dexter. He's a shy pup. Doesn't bark much. Dreadful fetcher. Has rare sun allergy. 7/10 still petable | 7 |
| 3047 | Meet Stanley. He's an inverted Uzbekistani water pup. Hella exotic. Floats around all day. 8/10 I want to be Stanley | 8 |
| 3072 | This is Yoda. He's a Zimbabwean Rutabaga. Freaks out if u stop scratching his belly. Incredibly self-centered. 9/10 | 9 |
| 3067 | I know it's tempting, but please stop sending in pics of Donald Trump. Thank you ...9/10 | 9 |
| 3060 | This is Chip. He's an Upper West Nile Pantaloon. Extremely deadly. Will rip your throat out. 6/10 might still pet | 6 |
| 3056 | This is Socks. That water pup w the super legs just splashed him. Socks did not appreciate that. 9/10 and 2/10 | 9 |
| 3053 | Really guys? Again? I know this is a rare Albanian Bingo Seal, but we only rate dogs. Only send in dogs... 9/10 | 9 |
| 3381 | Say hello to Emmie. She's trapped in an ornament. Tragic af. Looks pretty content tho. Maybe it's meant to be. 9/10 | 9 |
| 3383 | Meet Penelope. She's a bacon frise. Total babe (lol get it like the movie). Doesn't bark tho. 5/10 very average dog | 5 |
| 3714 | Pink dogs here. Unreasonably long necks. Left guy has only 1 leg. Quite nimble. Don't bark tho 4/10s would still pet | 4 |
| 3710 | This is Toby. He asked for chocolate cake for his birthday but was given vanilla instead. 8/10 it'll be ok Toby | 8 |
| 3709 | Meet Phred. He isn't steering, looking at the road, or wearing a seatbelt. Phred is a rolling tornado of danger 6/10 | 6 |
| 3708 | Two miniature golden retrievers here. Webbed paws. Don't walk very efficiently. Can't catch a tennis ball. 4/10s | 4 |
| 3707 | Say hello to Clarence. He's a western Alkaline Pita. Very proud of himself for dismembering his stuffed dog pal 8/10 | 8 |
| 3705 | Neat pup here. Enjoys lettuce. Long af ears. Short lil legs. Hops surprisingly high for dog. 9/10 still very petable | 9 |
| 3704 | This is a Helvetica Listerine named Rufus. This time Rufus will be ready for the UPS guy. He'll never expect it 9/10 | 9 |
| 3715 | This is Jett. He is unimpressed by flower. 7/10 | 7 |
| 3700 | Pack of horned dogs here. Very team-oriented bunch. All have weird laughs. Bond between them strong. 8/10 for all | 8 |
| 3696 | This is Lola. She was not fully prepared for the water slide. 9/10 | 9 |
| 3694 | Tfw she says hello from the other side. 9/10 | 9 |
| 3692 | Striped dog here. Having fun playing on back. Sturdy paws. Looks like an organized Dalmatian. 7/10 would still pet | 7 |
| 3689 | This is Julius. He's a cool dog. Carries seashell everywhere. Rad segmented legs. Currently attacking castle. 8/10 | 8 |
| 3701 | This is Anthony. He just finished up his masters at Harvard. Unprofessional tattoos. Always looks perturbed. 5/10 | 5 |
| 3717 | Scary dog here. Too many legs. Extra tail. Not soft, let alone fluffy. Won't bark. Moves sideways. Has weapon. 2/10 | 2 |
| 3745 | Silly dog here. Wearing bunny ears. Nice long tail. Unique paws. Not crazy soft but will do. Extremely agile. 7/10 | 7 |
| 3741 | This is Bloo. He's a Westminster Cîroc. Doesn't think Bart deserves legs. Nice flowers. 8/10 | 8 |
| 3740 | This is Pluto. He's holding little waddling dog hostage. Little waddling dog very desperate at this point sos. 8/10 | 8 |
| 3739 | This is Ester. He has a cocaine problem. This is an intervention Ester. We all care about you. 8/10 | 8 |
| 3738 | Meet Danny. He's too good to look at the road when he's driving. Absolute menace. 6/10 completely irresponsible | 6 |
| 3735 | This is Jerry. He's a great listener. Low maintenance. Hard to get leash on tho. 8/10 still good dog | 8 |
| 3734 | Say hello to Gin & Tonic. They're having a staring contest. Very very intense. 9/10 for both | 9 |
| 3731 | This is Traviss. He has no ears. Two rare dogs in background. I bet they all get along nicely. 7/10s I'd pet all | 7 |
| 3730 | This dude slaps your girl's ass what do you do?\n5/10 | 5 |
| 3729 | Flamboyant pup here. Probably poisonous. Won't eat kibble. Doesn't bark. Slow af. Petting doesn't look fun. 1/10 | 1 |
| 3728 | This is Creg. You offered him a ride to work but you're late and you just missed his exit. 8/10 | 8 |
| 3727 | Two obedient dogs here. Left one has extra leg sticking out of its back. They each get 9/10. Would pet both at once | 9 |
| 3726 | This is Antony. He's a Sheraton Tetrahedron. Skips awkwardly. Doesn't look when he crosses the road (reckless). 7/10 | 7 |
| 3685 | This is Scruffers. He's being violated on multiple levels and is not happy about it. 9/10 hang in there Scruffers | 9 |
| 3653 | This is Cal. He's a Swedish Geriatric Cheddar. Upset because the pope is laughing at his eyebrows. 9/10 | 9 |
| 3652 | Exotic underwater dog here. Very shy. Wont return tennis balls I toss him. Never been petted. 5/10 I bet he's soft | 5 |
| 3651 | This is Ridley. He doesn't know how to couch. 7/10 | 7 |
| 3647 | Mighty rare dogs here. Long smooth necks. Great knees. Travel in squads. 1 out of every 14 is massive. 8/10 for all | 8 |
| 3642 | This is Buddy. He's photogenic af. Loves to sexily exit pond. Very striped. Comes with shield. 8/10 would pet well | 8 |
| 3637 | Meet Darby. He's a Fiscal Tutankhamen Waxbeard. Really likes steak. 7/10 | 7 |
| 3636 | Lots of pups here. All are Judea Hazelnuts. Exceptionally portable. 8/10 for all | 8 |
| 3632 | This is Caryl. Likes to get in the microwave. 9/10 damn it Caryl | 9 |
| 3629 | This is Leonidas. He just got rekt by a snowball. 9/10 doggy down | 9 |
| 3628 | This is Jerry. He's a Timbuk Slytherin. Eats his pizza from the side first. Crushed that cup with his bare paws 9/10 | 9 |
| 3682 | Super rare dog here. Spiffy mohawk. Sharp mouth. Shits eggs. Cool chariot wheel in background. 6/10 v confident pup | 6 |
| 3681 | This is Reginald. He's pondering what life would be like without so much damn skin. 9/10 it'll be ok buddy | 9 |
| 3680 | This is Baxter. He's very calm. Hasn't eaten in weeks tho. Not good at fetch. Never blinks. 8/10 would still pet | 8 |
| 3678 | Interesting dog here. Very large. Purple. Manifests rainbows. Perfect teeth. No ears. Surprisingly knowledgable 6/10 | 6 |
| 3672 | Very fit horned dog here. Looks powerful. Not phased by wind. Great beard. Big enough to ride? 6/10 would cuddle | 6 |
| 3671 | Say hello to Mark. He's a good dog. Always ready to go for a walk. Excellent posture. 9/10 keep it up Mark | 9 |
| 3668 | Remarkable dog here. Walks on back legs really well. Looks extra soft. 8/10 would cuddle with | 8 |
| 3665 | This is Brad. He's a chubby lil pup. Doesn't really need the food he's trying to reach. 5/10 you've had enough Brad | 5 |
| 3661 | Say hello to Gizmo. He's upset because he's not sure if he's really big or the shopping cart is really small. 7/10 | 7 |
| 3659 | This is Tuco. That's the toast that killed his father. 9/10 | 9 |
| 3686 | Say hello to Hammond. He's just a wee lil pup. Jumps around a shit ton. 8/10 overall very good dog | 8 |
| 3747 | Vibrant dog here. Fabulous tail. Only 2 legs tho. Has wings but can barely fly (lame). Rather elusive. 5/10 okay pup | 5 |
| 3834 | This is a wild Toblerone from Papua New Guinea. Mouth always open. Addicted to hay. Acts blind. 7/10 handsome dog | 7 |
| 3828 | This is Herald. He likes to swing. Subtle tongue slip. Owner good at b-ball. Creepy person on bench back there. 9/10 | 9 |
| 3822 | This is Ruby. She's a Bimmington Fettuccini. One ear works a lil better than other. Looks startled. Cool carpet 9/10 | 9 |
| 3821 | Honor to rate this dog. Lots of fur on him. Two massive tumors on back. Should get checked out. Very neat tho. 7/10 | 7 |
| 3820 | This is Bernie. He's taking his Halloween costume very seriously. Wants to be baked. 3/10 not a good idea Bernie smh | 3 |
| 3819 | This is Harrison. He braves the snow like a champ. Perched at all times. Hasn't blinked in months. 8/10 v nifty dog | 8 |
| 3818 | Two gorgeous pups here. Both have cute fake horns(adorable). Barn in the back looks on fire. 5/10 would pet rly well | 5 |
| 3813 | This is Samsom. He is sexually confused. Really wants to be a triceratops. 9/10 just a great guy | 9 |
| 3811 | This is Clarq. He's a golden Quetzalcoatl. Clarq enjoys eating his own foot. Damn it Clarq. 8/10 would pet firmly | 8 |
| 3823 | Unique dog here. Oddly shaped tail. Long pink front legs. I don't think dogs breath underwater sos. 4/10 bad owner | 4 |
| 3838 | Fascinating dog here. Loves beach. Oddly long nose for dog. Massive ass paws. Hard to cuddle w. 3/10 would still pet | 3 |
| 3864 | Say hello to Bisquick. He is a Brown Douglass Fir terrier. Very inbred. Looks terrified. 8/10 still cute tho | 8 |
| 3858 | 2 rare dogs. They waddle (v inefficient). Sometimes slide on bellies. Right one wants to be aircraft Marshall. 9/10s | 9 |
| 3857 | Here is a mother dog caring for her pups. Snazzy red mohawk. Doesn't wag tail. Pups look confused. Overall 4/10 | 4 |
| 3855 | Good teamwork between these dogs. One is on lookout while other eats. Long necks. Nice big house. 9/10s good pups | 9 |
| 3854 | This is Jo. Jo is a Swedish Queso. Tongue bigger than face. Tiny lil legs. Still no seatbelt. Simply careless. 8/10 | 8 |
| 3851 | This is Spark. He's nervous. Other dog hasn't moved in a while. Won't come when called. Doesn't fetch well 8/10&1/10 | 8 |
| 3847 | Here is a horned dog. Much grace. Can jump over moons (dam!). Paws not soft. Bad at barking. 7/10 can still pet tho | 7 |
| 3843 | This is Timofy. He's a pilot for Southwest. It's Christmas morning & everyone has gotten kickass gifts but him. 9/10 | 9 |
| 3842 | Meet Zeek. He is a grey Cumulonimbus. Zeek is hungry. Someone should feed Zeek asap. 5/10 absolutely terrifying | 5 |
| 3774 | This is Tommy. He's a cool dog. Hard not to step on. Won't let go of seashell. Not fast by any means. 3/10 | 3 |
| 3772 | This is Randall. He's from Chernobyl. Built playground himself. Has been stuck up there quite a while. 5/10 good dog | 5 |
| 3768 | This is Wally. He's a Flaccid Mitochondria. Going on vacation. Bag definitely full of treats. Great hat. 9/10 | 9 |
| 3766 | This is a Speckled Cauliflower Yosemite named Hemry. He's terrified of intruder dog. Not one bit comfortable. 9/10 | 9 |
| 3763 | This is a Rich Mahogany Seltzer named Cherokee. Just got destroyed by a snowball. Isn't very happy about it. 9/10 | 9 |
| 3761 | Meet Larry. He's a Panoramic Benzoate. Can shoot lasers out of his eyes. Very neat. Stuck in that position tho. 8/10 | 8 |
| 3757 | Sharp dog here. Introverted. Loves purple. Not fun to pet. Hurts to cuddle with. 6/10 still good dog tho | 6 |
| 3754 | This is a Deciduous Trimester mix named Spork. Only 1 ear works. No seat belt. Incredibly reckless. 9/10 still cute | 9 |
| 3777 | Awesome dog here. Not sure where it is tho. Spectacular camouflage. Enjoys leaves. Not very soft. 5/10 still petable | 5 |
| 3779 | This is Zoey. Her dreams of becoming a hippo ballerina don't look promising. 9/10 it'll be ok puppers | 9 |
| 3805 | Meet Dug. Dug fucken loves peaches. 8/10 | 8 |
| 3800 | This is Billl. He's trying to be a ghost but he's not very good at it. 6/10 c'mon Billl | 6 |
| 3797 | Meet Kollin. He's a Parakeetian Badminton from Denmark. Great artist. Taking break from research. Loves wicker 9/10 | 9 |
| 3796 | This is Keith. He's had 13 DUIs. 7/10 that's too many Keith | 7 |
| 3794 | Special dog here. Pretty big. Neck kinda long for dog. Cool spots. Must be a Dalmatian variant. 6/10 would still pet | 6 |
| 3790 | This is a brave dog. Excellent free climber. Trying to get closer to God. Not very loyal though. Doesn't bark. 5/10 | 5 |
| 3789 | This is Shawwn. He's a Turkish Gangrene Robitussin. Spectacular tongue. Cranks out push-ups. 8/10 #NoDaysOff #swole | 8 |
| 3788 | Meet Louie. He just pounded that bottle of wine. 9/10 goodnight Louie | 9 |
| 3786 | Say hello to Clarence. Clarence thought he saw a squirrel. He was just trying to help. 8/10 poor Clarence | 8 |
| 3626 | This is Oscar. He's getting bombarded with the snacks. Not sure he's happy about it. 8/10 for Oscar | 8 |
| 3470 | Say hello to Griffin. He's upset because his costume for Halloween didn't arrive until today. 9/10 cheer up pup | 9 |
| 3467 | Meet Vinnie. He's having fun while being safe. Well not a lot of fun, but definitely safe, and that's important 8/10 | 8 |
| 3466 | This is Bubbles. He kinda resembles a fish. Always makes eye contact with u no matter what. Sneaky tongue slip. 5/10 | 5 |
| 3460 | Say hello to Penny & Gizmo. They are practicing their caroling. The ambition in the room is tangible. 9/10 for both | 9 |
| 3456 | Exotic handheld dog here. Appears unathletic. Feet look deadly. Can be thrown a great distance. 5/10 might pet idk | 5 |
| 3454 | Who leaves the last cupcake just sitting there? 9/10 | 9 |
| 3452 | This is Karl. Karl thinks he's slick. 6/10 sneaky pup | 6 |
| 3451 | This is Tyrus. He's a Speckled Centennial Ticonderoga. Terrified of floating red ball. Nifty bandana. 8/10 v petable | 8 |
| 3448 | Here we see a Byzantine Rigatoni. Very aerodynamic. No eyes. Actually not windy here they just look like that. 9/10 | 9 |
| 3445 | This is Juckson. He's totally on his way to a nascar race. 5/10 for Juckson | 5 |
| 3484 | This is Donny. He's summoning the demon monster Babadook. 6/10 Donny please no that won't be a good time for anyone | 6 |
| 3482 | "Yes hello I'ma just snag this here toasted bagel real quick. carry on." 9/10 | 9 |
| 3481 | Extremely rare pup here. Very religious. Always praying. Too many legs. Not overwhelmingly fluffy. Won't bark. 3/10 | 3 |
| 3477 | This is Herm. He just wants to be like the other dogs. Sneaky tongue slip. Super fuzzy. 9/10 would cuddle firmly | 9 |
| 3475 | Say hello to Winston. He has no respect for the system. Much rebellion. I think that's a palm tree... nice. 8/10 | 8 |
| 3441 | This dog gave up mid jump. 9/10 | 9 |
| 3409 | This is Mia. She makes awful decisions. 8/10 | 8 |
| 3407 | This is Linda. She fucking hates trees. 7/10 | 7 |
| 3403 | This dog doesn't know how to stairs. Quite tragic really. 9/10 get it together pup | 9 |
| 3399 | I know everyone's excited for Christmas but that doesn't mean you can send in reindeer. We only rate dogs... 8/10 | 8 |
| 3394 | Say hello to William. He makes fun of others because he's terrified of his own deep-seated insecurities. 7/10 | 7 |
| 3392 | Guys this really needs to stop. We've been over this way too many times. This is a giraffe. We only rate dogs.. 7/10 | 7 |
| 3391 | This is Mike. He is a Jordanian Frito Pilates. Frowning because he can't see directly in front of him. 8/10 | 8 |
| 3390 | This is Hunter. He was playing with his ball minding his own business. Has no idea what happened to the carpet. 8/10 | 8 |
| 3389 | This pup's name is Sabertooth (parents must be cool). Ears for days. Jumps unannounced. 9/10 would pet diligently | 9 |
| 3385 | This is Bruce. He's a rare pup. Covered in Frosted Flakes. Nifty gold teeth. Overall good dog. 7/10 would pet firmly | 7 |
| 3396 | This is Evy. She doesn't want to be a Koala. 9/10 | 9 |
| 3412 | Meet Tango. He's a large dog. Doesn't care much for personal space. Owner isn't very accepting. Tongue slip. 6/10 | 6 |
| 3413 | Exotic pup here. Tail long af. Throat looks swollen. Might breathe fire. Exceptionally unfluffy 2/10 would still pet | 2 |
| 3440 | Say hello to Axel. He's a Black Chevy Pinot on wheels. 0 to 60 in 5.7 seconds (if downhill). 9/10 I call shotgun | 9 |
| 3437 | Contortionist pup here. Inside pentagram. Clearly worships Satan. Known to slowly push fragile stuff off tables 6/10 | 6 |
| 3433 | Endangered triangular pup here. Could be a wizard. Caught mid-laugh. No legs. Just fluff. Probably a wizard. 9/10 | 9 |
| 3431 | This is Sadie. She got her holidays confused. 9/10 damn it Sadie | 9 |
| 3428 | Guys this was terrifying. Really spooked me up. We don't rate ghosts. We rate dogs. Please only send dogs... 9/10 | 9 |
| 3425 | This is Jessifer. She is a Bismoth Teriyaki. Flowers being attacked by hurricanes on bandana (rad). 9/10 stellar pup | 9 |
| 3416 | This is Crystal. She's a shitty fireman. No sense of urgency. People could be dying Crystal. 2/10 just irresponsible | 2 |
| 3442 | Meet Humphrey. He's a Northern Polyp Viagra. One ear works. Face stuck like that. Always surprised. 9/10 petable af | 9 |
| 3625 | Marvelous dog here. Rad ears. Not very soft. Large tumor on nose. Has a pet rock. Good w kids. 6/10 overall neat pup | 6 |
| 3505 | Rare shielded battle dog here. Very happy about abundance of lettuce. Painfully slow fetcher. Still petable. 5/10 | 5 |
| 3589 | Meet Larry. He doesn't know how to shoe. 9/10 damn it Larry | 9 |
| 3586 | Large blue dog here. Cool shades. Flipping us off w both hands. Obviously a preteen. 3/10 for rude blue preteen pup | 3 |
| 3585 | This is Dot. He found out you only pretended to throw the ball that one time. You don't fuck with Dot. 8/10 | 8 |
| 3580 | This is a heavily opinionated dog. Loves walls. Nobody knows how the hair works. Always ready for a kiss. 4/10 | 4 |
| 3578 | Guys I'm getting real tired of this. We only rate dogs. Please don't send in other things like this Bulbasaur. 3/10 | 3 |
| 3571 | Meet Daisy. She has no eyes & her face has been blurry since birth. Quite the trooper tho. Still havin a blast. 9/10 | 9 |
| 3568 | Herd of wild dogs here. Not sure what they're trying to do. No real goals in life. 3/10 find your purpose puppers | 3 |
| 3623 | This is Jimison. He's stuck in a pot. Damn it Jimison. 9/10 | 9 |
| 3618 | Extraordinary dog here. Looks large. Just a head. No body. Rather intrusive. 5/10 would still pet | 5 |
| 3617 | Very happy pup here. Always smiling. Loves his little leaf. Carries it everywhere with him. 9/10 | 9 |
| 3615 | This is Pumpkin. He can look in two different directions at once. Great with a screwdriver. 8/10 | 8 |
| 3611 | Magical floating dog here. Very calm. Always hangs by the pond. Rather moist. Good listener. 6/10 personally I'd pet | 6 |
| 3604 | This is Gerald. He's a fluffy lil yellow pup. Always looks like his favorite team just lost on a hail mary. 7/10 | 7 |
| 3603 | This is Bella. She's a Genghis Flopped Canuck. Stuck in trash can. 9/10 not to happy about it | 9 |
| 3600 | This is Steve. He was just relaxing in hot tub when he was intruded upon. 8/10 poor little pup | 8 |
| 3598 | Sun burnt dog here. Quite large. Wants to promote peace. Looks unemployed. Ears for days. 7/10 would pet profusely | 7 |
| 3597 | When you ask your professor about extra credit on the last day of class. 8/10 | 8 |
| 3565 | This is Earl. Earl is lost. Someone help Earl. He has no tags. Just trying to get home. 5/10 hang in there Earl | 5 |
| 3531 | Say hello to Maggie. She's a Western Septic Downy. Pretends to be Mexican. Great hardwood flooring. 9/10 | 9 |
| 3521 | C'mon guys. We've been over this. We only rate dogs. This is a cow. Please only submit dogs. Thank you...... 9/10 | 9 |
| 3520 | Say hello to Oliver. He thought what was inside the pillow should be outside the pillow. Blurry since birth. 8/10 | 8 |
| 3532 | Bedazzled pup here. Fashionable af. Super yellow. Looks hella fluffy. Webbed paws for efficient fetching. 8/10 | 8 |
| 3517 | What an honor. 3 dogs here. Blond one is clearly a gymnast. Other two just confused. Very nifty pups. 9/10 for all | 9 |
| 3516 | This is Coops. He's yelling at the carpet. Not very productive Coops. 7/10 | 7 |
| 3513 | What kind of person sends in a picture without a dog in it? 1/10 just because that's a nice table | 1 |
| 3518 | This is Steven. He got locked outside. Damn it Steven. 5/10 nice grill tho | 5 |
| 3560 | This is Henry. He's a shit dog. Short pointy ears. Leaves trail of pee. Not fluffy. Doesn't come when called. 2/10 | 2 |
| 3559 | This is Bob. He's a Juniper Fitzsimmons. His body is 2, but his face is 85. Always looks miserable. Nice stool. 8/10 | 8 |
| 3554 | This is Gary. He's a hide and seek champion. Second only to Kony. 8/10 Gary has a gift | 8 |
| 3550 | Meet Bailey. She plays with her food. Very childish. Doesn't even need a battle helmet smh. Still cute though. 9/10 | 9 |
| 3547 | Rare submerged pup here. Holds breath for a long time. Frowning because that spoon ignores him. 5/10 would still pet | 5 |
| 3544 | Two gorgeous dogs here. Little waddling dog is a rebel. Refuses to look at camera. Must be a preteen. 5/10 & 8/10 | 5 |
| 3542 | Meet Jeb & Bush. Jeb is somehow stuck in that fence and Bush won't stop whispering sweet nothings in his ear. 9/10s | 9 |
| 3541 | Meet Patrick. He's an exotic pup. Jumps great distances for a dog. Always gets injured when I toss him a ball. 3/10 | 3 |
| 2894 | This is Charleson. He lost his plunger. Looked everywhere. Can't find it. So sad. 9/10 would comfort | 9 |
| 2524 | Who keeps sending in pictures without dogs in them? This needs to stop. 5/10 for the mediocre road | 5 |
| 2548 | This is Wesley. He's clearly trespassing. Seems rather h*ckin violent too. Weaponized forehead. 3/10 wouldn't let in | 3 |
| 2171 | This is Jerry. He's doing a distinguished tongue slip. Slightly patronizing tbh. You think you're better than us, Jerry? 6/10 hold me back | 6 |
| 2229 | When you're so blinded by your systematic plagiarism that you forget what day it is. 0/10 | 0 |
| 7975 | Here we have a Japanese Irish Setter. Lost eye in Vietnam (?). Big fan of relaxing on stair. 8/10 would pet | 8 |
| 2659 | Teagan reads entire books in store so they're free. Loved 50 Shades of Grey (how dare I make that joke so late) 9/10 | 9 |
| 2650 | Meet Toby. He has a drinking problem. Inflatable marijuana plant in the back is also not a good look. 7/10 cmon Toby | 7 |
| 2760 | This is Percy. He fell asleep at the wheel. Irresponsible af. 7/10 absolute menace on the roadway | 7 |
| 2762 | We only rate dogs. Pls stop sending in non-canines like this Jamaican Flop Seal. This is very very frustrating. 9/10 | 9 |
| 2666 | This is Devón (pronounced "Eric"). He forgot how to eat the apple halfway through. Wtf Devón get it together. 8/10 | 8 |
| 2663 | Here's another picture without a dog in it. Idk why you guys keep sending these. 4/10 just because that's a neat rug | 4 |
| 2773 | This is Harold. He looks slippery af. Probably difficult to hug. Would still try tho. 7/10 great with kids I bet | 7 |
| 2787 | This is Tucker. He's still figuring out couches. 9/10 keep your head up pup | 9 |
| 2791 | Here we are witnessing the touchdown of a pupnado. It's not funny it's actually very deadly. 9/10 might still pet | 9 |
| 2792 | This is Chip. He only mowed half the yard. 8/10 quit the shit Chip we have other things to do | 8 |
| 2794 | After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP | 9 |
| 2642 | This is Fido. He can tell the weather. Not good at fetch tho. Never comes when called. 4/10 would probably still pet | 4 |
| 2733 | This is one of the most reckless puppers I've ever seen. How she got a license in the first place is beyond me. 6/10 | 6 |
| 2727 | This is Dietrich. He hops at random. Other doggos don't understand him. It upsets him greatly. 8/10 would comfort | 8 |
| 2737 | This sherk must've leapt out of the water and into the canoe, trapping the human. Won't even help paddle smh. 7/10 | 7 |
| 2750 | PUPDATE: can't see any. Even if I could, I couldn't reach them to pet. 0/10 much disappointment | 0 |
| 2756 | This is an Iraqi Speed Kangaroo. It is not a dog. Please only send in dogs. I'm very angry with all of you ...9/10 | 9 |
| 2686 | This is Hank. He's mischievous af. Doesn't even know what he was trying to do here. 8/10 quit the shit Hank damn | 8 |
| 2740 | This is a mighty rare blue-tailed hammer sherk. Human almost lost a limb trying to take these. Be careful guys. 8/10 | 8 |
| 2742 | Viewer discretion is advised. This is a terrible attack in progress. Not even in water (tragic af). 4/10 bad sherk | 4 |
| 2796 | This is Chase. He's in a predicament. 9/10 help is on the way buddy | 9 |
| 2856 | This is Coleman. Somebody needs to tell him that he's sitting in chairs wrong. 8/10 | 8 |
| 2866 | I swear to god if we get sent another Blue Madagascan Peacock we'll deactivate. We 👏 Only 👏 Rate 👏 Dogs... 9/10 | 9 |
| 2847 | This is Charles. He's camera shy. Tail longer than average. Doesn't look overwhelmingly fluffy. 6/10 would still pet | 6 |
| 2587 | Another pic without a dog in it? What am I supposed to do? Rate the carpet? Fine I will. 7/10 looks adequately comfy | 7 |
| 2884 | This is Jangle. She's addicted to broccoli. It's the only thing she cares about. Tragic af. 8/10 get help pup | 8 |
| 2885 | Happy 4/20 from the squad! 13/10 for all | 4 |
| 2871 | I'm getting super heckin frustrated with you all sending in non canines like this ostrich. We only rate dogs... 9/10 | 9 |
| 2843 | We only rate dogs. Pls stop sending non-canines like this Bulgarian Eyeless Porch Bear. This is unacceptable... 9/10 | 9 |
| 2816 | Say hello to Lily. She's not injured or anything. Just wants everyone to hear her. 9/10 clever af | 9 |
| 2809 | For the last time, we only rate dogs. Pls stop sending other animals like this Duck-Billed Platypus. Thank you. 9/10 | 9 |
| 2803 | This is Kyle. He's a heavy drinker and an avid pot user. Just wants to be pupular. 6/10 I can't support this Kyle | 6 |
| 2622 | This is Clark. He collects teddy bears. It's absolutely h*ckin horrifying. 8/10 please stop this Clark | 8 |
| 2610 | This is Shadoe. Her tongue flies out of her mouth at random. Can't have a serious conversation with her. 9/10 | 9 |
| 699 | Here's a doggo trying to catch some fish. 8/10 futile af (vid by @KellyBauerx) | 8 |
| 832 | This is Kellogg. He accidentally opened the front facing camera. 8/10 get it together doggo | 8 |
| 608 | Meet Gerald. He's a fairly exotic doggo. Floofy af. Inadequate knees tho. Self conscious about large forehead. 8/10 | 8 |
| 5459 | This is Godzilla pupper. He had a ruff childhood & now deflects that pain outward by terrorizing cities. Tragic 9/10 | 9 |
| 5462 | This pupper is very passionate about Christmas. Wanted to give the tree a hug. So cute. 8/10 | 8 |
| 5263 | This is the newly formed pupper a capella group. They're just starting out but I see tons of potential. 8/10 for all | 8 |
| 4821 | Meet Buckley. His family & some neighbors came over to watch him perform but he's nervous af. 9/10 u got this pupper | 9 |
| 5265 | This is Marty. He has no idea what happened here. Never seen this stuff in his life. 9/10 very suspicious pupper | 9 |
| 5267 | This is Otis. He just passed a cop while going 61 in a 45. Very nervous pupper. 7/10 | 7 |
| 5243 | "You got any games on your phone" 7/10 for invasive brown Dalmatian pupper | 7 |
| 5449 | Here we see a rare pouched pupper. Ample storage space. Looks alert. Jumps at random. Kicked open that door. 8/10 | 8 |
| 5128 | This is Trevith. He's a Swiss Mountain Roadwoof. Breeze too powerful. 9/10 stay strong pupper | 9 |
| 5301 | Here we see a faulty pupper. Might need to replace batteries. Try turning off & back on again. 9/10 would still pet | 9 |
| 5307 | "Hello forest pupper I am house pupper welcome to my abode" (8/10 for both) | 8 |
| 5314 | Here we see a nifty leaping pupper. Feet look deadly. Sad that the holidays are over. 9/10 undeniably huggable | 9 |
| 5336 | Can you spot Toby the guilty pupper? 7/10 would be higher but he made quite the mess shredding his stuffed pals | 7 |
| 5323 | This is Patrick. He's a bigass pupper. 7/10 | 7 |
| 5311 | Meet Brandy. She's a member of the Bloods. Menacing criminal pupper. Soft spot for flowers tho. 9/10 pet w caution | 9 |
| 4979 | Here's a pupper with magic eyes. Not wearing a seat belt tho (irresponsible af). Very distracting to driver. 9/10 | 9 |
| 5282 | Here we have a basking dino pupper. Looks powerful. Occasionally shits eggs. Doesn't want the holidays to end. 5/10 | 5 |
| 5389 | This is Dwight. He's a pointy pupper. Very docile. Attracts marshmallows. Hurts to pet but definitely worth it 8/10 | 8 |
| 4795 | Meet Benji. He just turned 1. Has already given up on a traditional pupper physique. Just inhaled that thing. 9/10 | 9 |
| 4702 | This is Zoe. She was trying to stealthily take a picture of you but you just noticed. 9/10 not so sneaky pupper | 9 |
| 5581 | This is Pickles. She's a tiny pointy pupper. Average walker. Very skeptical of wet leaf. 8/10 | 8 |
| 5155 | Meet Phil. He's big af. Currently destroying this nice family home. Completely uncalled for. 3/10 not a good pupper | 3 |
| 5555 | This is Gus. He's super stoked about being an elephant. Couldn't be happier. 9/10 for elephant pupper | 9 |
| 5172 | Meet Herschel. He's slightly bigger than ur average pupper. Looks lonely. Could probably ride 7/10 would totally pet | 7 |
| 5650 | This is Bubba. He's a Titted Peebles Aorta. Evolutionary masterpiece. Comfortable with his body. 8/10 great pupper | 8 |
| 5589 | This is Jeffri. He's a speckled ice pupper. Very lazy. Enjoys the occasional swim. Rather majestic really. 7/10 | 7 |
| 5146 | Meet Grady. He's very hungry. Too bad no one can find his food bowl. 9/10 poor pupper | 9 |
| 5126 | This is Misty. She's in a predicament. Not sure what next move should be. 9/10 stay calm pupper I'm comin | 9 |
| 5625 | This is Norman. Doesn't bark much. Very docile pup. Up to date on current events. Overall nifty pupper. 6/10 | 6 |
| 5614 | This is Chet. He's having a hard time. Really struggling. 7/10 hang in there pupper | 7 |
| 5628 | Meet Scott. Just trying to catch his train to work. Doesn't need everybody staring. 9/10 ignore the haters pupper | 9 |
| 5607 | This is Fletcher. He's had a ruff night. No more Fireball for Fletcher. 8/10 it'll be over soon pupper | 8 |
| 5603 | Meet Eve. She's a raging alcoholic 8/10 (would b 11/10 but pupper alcoholism is a tragic issue that I can't condone) | 8 |
| 4692 | Please stop sending it pictures that don't even have a doggo or pupper in them. Churlish af. 5/10 neat couch tho | 5 |
| 4700 | This is Malcolm. He's absolutely terrified of heights. 8/10 hang in there pupper | 8 |
| 5648 | This is Opal. He's a Royal John Coctostan. Ready for transport. Basically indestructible. 9/10 good pupper | 9 |
| 5550 | This is Lennon. He's in quite the predicament. 8/10 hang in there pupper | 8 |
| 5222 | This is Hamrick. He's covered in corn flakes. Silly pupper. Looks congested. 7/10 considerably petable | 7 |
| 4778 | This is Edmund. He sends stellar selfies. Cute af. 8/10 would totally snapchat with this pupper | 8 |
| 5236 | Say hello to Blakely. He thinks that's a hat. Silly pupper. That's a nanner. 9/10 | 9 |
| 6753 | This is Abby. She got her face stuck in a glass. Churlish af. 9/10 rookie move puppo | 9 |
twitter_archive_clean.loc[(39,2885),'rating_numerator'] = 13
twitter_archive_clean.loc[3322,'rating_numerator'] = 10
twitter_archive_clean.loc[(39,2885,3322),['text','rating_numerator']]
| text | rating_numerator | |
|---|---|---|
| 39 | This is Bella. She hopes her smile made you smile. If not, she is also offering you her favorite monkey. 13.5/10 | 13 |
| 2885 | Happy 4/20 from the squad! 13/10 for all | 13 |
| 3322 | This is Darrel. He just robbed a 7/11 and is in a high speed police chase. Was just spotted by the helicopter 10/10 | 10 |
len(twitter_archive_clean.query('rating_denominator != 10'))
18
twitter_archive_clean.query('rating_denominator != 10').loc[:,['text','rating_denominator']]
| text | rating_denominator | |
|---|---|---|
| 1973 | This is an Albanian 3 1/2 legged Episcopalian. Loves well-polished hardwood flooring. Penis on the collar. 9/10 | 2 |
| 3322 | This is Darrel. He just robbed a 7/11 and is in a high speed police chase. Was just spotted by the helicopter 10/10 | 11 |
| 3297 | Someone help the girl is being mugged. Several are distracting her while two steal her shoes. Clever puppers 121/110 | 110 |
| 3296 | Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you | 130 |
| 2982 | From left to right:\nCletus, Jerome, Alejandro, Burp, & Titson\nNone know where camera is. 45/50 would hug all at once | 50 |
| 2964 | Here's a brigade of puppers. All look very prepared for whatever happens next. 80/80 | 80 |
| 2919 | This is Bluebert. He just saw that both #FinalFur match ups are split 50/50. Amazed af. 11/10 | 50 |
| 2940 | Happy Saturday here's 9 puppers on a bench. 99/90 good work everybody | 90 |
| 3124 | Happy Wednesday here's a bucket of pups. 44/40 would pet all at once | 40 |
| 3048 | Here is a whole flock of puppers. 60/50 I'll take the lot | 50 |
| 3488 | Here we have an entire platoon of puppers. Total score: 88/80 would pet all at once | 80 |
| 3429 | IT'S PUPPERGEDDON. Total of 144/120 ...I think | 120 |
| 2379 | Meet Sam. She smiles 24/7 & secretly aspires to be a reindeer. \nKeep Sam smiling by clicking and sharing this link:\n | 7 |
| 2317 | The floofs have been released I repeat the floofs have been released. 84/70 | 70 |
| 2656 | Why does this never happen at my front door... 165/150 | 150 |
| 2794 | After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP | 11 |
| 2885 | Happy 4/20 from the squad! 13/10 for all | 20 |
| 2842 | Say hello to this unbelievably well behaved squad of doggos. 204/170 would try to pet all at once | 170 |
twitter_archive_clean.loc[(1973,2794,2885,2919,3322),'rating_denominator'] = 10
twitter_archive_clean.loc[(1973,2794,2885,2919,3322),['text','rating_denominator']]
| text | rating_denominator | |
|---|---|---|
| 1973 | This is an Albanian 3 1/2 legged Episcopalian. Loves well-polished hardwood flooring. Penis on the collar. 9/10 | 10 |
| 2794 | After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP | 10 |
| 2885 | Happy 4/20 from the squad! 13/10 for all | 10 |
| 2919 | This is Bluebert. He just saw that both #FinalFur match ups are split 50/50. Amazed af. 11/10 | 10 |
| 3322 | This is Darrel. He just robbed a 7/11 and is in a high speed police chase. Was just spotted by the helicopter 10/10 | 10 |
twitter_archive_clean.columns
Index(['tweet_id', 'source', 'text', 'expanded_urls', 'rating_numerator',
'rating_denominator', 'name', 'dogs_stage', 'year', 'month', 'day',
'url'],
dtype='object')
twitter_archive_clean.head()
| tweet_id | source | text | expanded_urls | rating_numerator | rating_denominator | name | dogs_stage | year | month | day | url | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1918 | 667405339315146752 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Biden. Biden just tripped... 7/10 | https://twitter.com/dog_rates/status/667405339315146752/photo/1 | 7 | 10 | Biden | NaN | 2015 | 11 | 19 | https://t.co/3Fm9PwLju1 |
| 1917 | 667435689202614272 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Ermergerd 12/10 | https://twitter.com/dog_rates/status/667435689202614272/photo/1 | 12 | 10 | NaN | NaN | 2015 | 11 | 19 | https://t.co/PQni2sjPsm |
| 1916 | 667437278097252352 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Never seen this breed before. Very pointy pup. Hurts when you cuddle. Still cute tho. 10/10 | https://twitter.com/dog_rates/status/667437278097252352/photo/1 | 10 | 10 | NaN | NaN | 2015 | 11 | 19 | https://t.co/97HuBrVuOx |
| 1915 | 667443425659232256 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Exotic dog here. Long neck. Weird paws. Obsessed with bread. Waddles. Flies sometimes (wow!). Very happy dog. 6/10 | https://twitter.com/dog_rates/status/667443425659232256/photo/1 | 6 | 10 | NaN | NaN | 2015 | 11 | 19 | https://t.co/rqO4I3nf2N |
| 1914 | 667453023279554560 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Meet Cupcake. I would do unspeakable things for Cupcake. 11/10 | https://twitter.com/dog_rates/status/667453023279554560/photo/1 | 11 | 10 | Cupcake | NaN | 2015 | 11 | 19 | https://t.co/6uLCWR9Efa |
twitter_archive_website_clean.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2331 entries, 0 to 2330 Data columns (total 3 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2331 non-null int64 1 favorite_count 2331 non-null int64 2 retweet_count 2331 non-null int64 dtypes: int64(3) memory usage: 54.8 KB
twitter_archive_website_clean.shape
(2331, 3)
archive_master_clean = pd.merge(twitter_archive_clean , twitter_archive_website_clean , how = 'left' , on = 'tweet_id')
archive_master_clean.head()
| tweet_id | source | text | expanded_urls | rating_numerator | rating_denominator | name | dogs_stage | year | month | day | url | favorite_count | retweet_count | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 667405339315146752 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Biden. Biden just tripped... 7/10 | https://twitter.com/dog_rates/status/667405339315146752/photo/1 | 7 | 10 | Biden | NaN | 2015 | 11 | 19 | https://t.co/3Fm9PwLju1 | 444.0 | 213.0 |
| 1 | 667435689202614272 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Ermergerd 12/10 | https://twitter.com/dog_rates/status/667435689202614272/photo/1 | 12 | 10 | NaN | NaN | 2015 | 11 | 19 | https://t.co/PQni2sjPsm | 293.0 | 81.0 |
| 2 | 667437278097252352 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Never seen this breed before. Very pointy pup. Hurts when you cuddle. Still cute tho. 10/10 | https://twitter.com/dog_rates/status/667437278097252352/photo/1 | 10 | 10 | NaN | NaN | 2015 | 11 | 19 | https://t.co/97HuBrVuOx | 427.0 | 225.0 |
| 3 | 667443425659232256 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Exotic dog here. Long neck. Weird paws. Obsessed with bread. Waddles. Flies sometimes (wow!). Very happy dog. 6/10 | https://twitter.com/dog_rates/status/667443425659232256/photo/1 | 6 | 10 | NaN | NaN | 2015 | 11 | 19 | https://t.co/rqO4I3nf2N | 745.0 | 546.0 |
| 4 | 667453023279554560 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Meet Cupcake. I would do unspeakable things for Cupcake. 11/10 | https://twitter.com/dog_rates/status/667453023279554560/photo/1 | 11 | 10 | Cupcake | NaN | 2015 | 11 | 19 | https://t.co/6uLCWR9Efa | 297.0 | 84.0 |
archive_master_clean.shape
(1994, 14)
image_prediction_clean.head()
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | Welsh_springer_spaniel | 0.465074 | True | collie | 0.156665 | True | Shetland_sheepdog | 0.061428 | True |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | redbone | 0.506826 | True | miniature_pinscher | 0.074192 | True | Rhodesian_ridgeback | 0.072010 | True |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | German_shepherd | 0.596461 | True | malinois | 0.138584 | True | bloodhound | 0.116197 | True |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | Rhodesian_ridgeback | 0.408143 | True | redbone | 0.360687 | True | miniature_pinscher | 0.222752 | True |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | miniature_pinscher | 0.560311 | True | Rottweiler | 0.243682 | True | Doberman | 0.154629 | True |
image_prediction_clean.shape
(2075, 12)
image_prediction_clean.jpg_url.isnull().sum()
0
image_prediction_clean.query('p1_dog == True').count()
tweet_id 1532 jpg_url 1532 img_num 1532 p1 1532 p1_conf 1532 p1_dog 1532 p2 1532 p2_conf 1532 p2_dog 1532 p3 1532 p3_conf 1532 p3_dog 1532 dtype: int64
type_of_dog = []
confidence = []
def images_prediction(image_prediction_clean):
if image_prediction_clean['p1_dog'] == True:
type_of_dog.append(image_prediction_clean['p1'])
confidence.append(image_prediction_clean['p1_conf'])
elif image_prediction_clean['p2_dog'] == True:
type_of_dog.append(image_prediction_clean['p2'])
confidence.append(image_prediction_clean['p2_conf'])
elif image_prediction_clean['p3_dog'] == True:
type_of_dog.append(image_prediction_clean['p3'])
confidence.append(image_prediction_clean['p3_conf'])
else:
type_of_dog.append('Invalid')
confidence.append('Invalid')
image_prediction_clean.apply(images_prediction,axis =1)
image_prediction_clean['dog_type'] = type_of_dog
image_prediction_clean['confidence'] = confidence
image_prediction_clean = image_prediction_clean[image_prediction_clean['dog_type'] != 'Invalid']
# dropping the rows which have dog type as Invalid
image_prediction_clean.head()
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | dog_type | confidence | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | Welsh_springer_spaniel | 0.465074 | True | collie | 0.156665 | True | Shetland_sheepdog | 0.061428 | True | Welsh_springer_spaniel | 0.465074 |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | redbone | 0.506826 | True | miniature_pinscher | 0.074192 | True | Rhodesian_ridgeback | 0.072010 | True | redbone | 0.506826 |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | German_shepherd | 0.596461 | True | malinois | 0.138584 | True | bloodhound | 0.116197 | True | German_shepherd | 0.596461 |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | Rhodesian_ridgeback | 0.408143 | True | redbone | 0.360687 | True | miniature_pinscher | 0.222752 | True | Rhodesian_ridgeback | 0.408143 |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | miniature_pinscher | 0.560311 | True | Rottweiler | 0.243682 | True | Doberman | 0.154629 | True | miniature_pinscher | 0.560311 |
image_prediction_clean.shape
(1751, 14)
image_prediction_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 1751 entries, 0 to 2073 Data columns (total 14 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 1751 non-null int64 1 jpg_url 1751 non-null object 2 img_num 1751 non-null int64 3 p1 1751 non-null object 4 p1_conf 1751 non-null float64 5 p1_dog 1751 non-null bool 6 p2 1751 non-null object 7 p2_conf 1751 non-null float64 8 p2_dog 1751 non-null bool 9 p3 1751 non-null object 10 p3_conf 1751 non-null float64 11 p3_dog 1751 non-null bool 12 dog_type 1751 non-null object 13 confidence 1751 non-null object dtypes: bool(3), float64(3), int64(2), object(6) memory usage: 169.3+ KB
image_prediction_clean.drop(['img_num',
'p1', 'p1_conf', 'p1_dog',
'p2', 'p2_conf', 'p2_dog',
'p3', 'p3_conf', 'p3_dog'],
axis = 1 , inplace = True)
image_prediction_clean.shape
(1751, 4)
image_prediction_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 1751 entries, 0 to 2073 Data columns (total 4 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 1751 non-null int64 1 jpg_url 1751 non-null object 2 dog_type 1751 non-null object 3 confidence 1751 non-null object dtypes: int64(1), object(3) memory usage: 68.4+ KB
twitter_archive_master_clean = pd.merge(archive_master_clean , image_prediction_clean , how = 'left' , on = 'tweet_id')
twitter_archive_master_clean.head()
| tweet_id | source | text | expanded_urls | rating_numerator | rating_denominator | name | dogs_stage | year | month | day | url | favorite_count | retweet_count | jpg_url | dog_type | confidence | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 667405339315146752 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Biden. Biden just tripped... 7/10 | https://twitter.com/dog_rates/status/667405339315146752/photo/1 | 7 | 10 | Biden | NaN | 2015 | 11 | 19 | https://t.co/3Fm9PwLju1 | 444.0 | 213.0 | https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg | Saint_Bernard | 0.381377 |
| 1 | 667435689202614272 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Ermergerd 12/10 | https://twitter.com/dog_rates/status/667435689202614272/photo/1 | 12 | 10 | NaN | NaN | 2015 | 11 | 19 | https://t.co/PQni2sjPsm | 293.0 | 81.0 | https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg | Rottweiler | 0.999091 |
| 2 | 667437278097252352 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Never seen this breed before. Very pointy pup. Hurts when you cuddle. Still cute tho. 10/10 | https://twitter.com/dog_rates/status/667437278097252352/photo/1 | 10 | 10 | NaN | NaN | 2015 | 11 | 19 | https://t.co/97HuBrVuOx | 427.0 | 225.0 | NaN | NaN | NaN |
| 3 | 667443425659232256 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Exotic dog here. Long neck. Weird paws. Obsessed with bread. Waddles. Flies sometimes (wow!). Very happy dog. 6/10 | https://twitter.com/dog_rates/status/667443425659232256/photo/1 | 6 | 10 | NaN | NaN | 2015 | 11 | 19 | https://t.co/rqO4I3nf2N | 745.0 | 546.0 | NaN | NaN | NaN |
| 4 | 667453023279554560 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Meet Cupcake. I would do unspeakable things for Cupcake. 11/10 | https://twitter.com/dog_rates/status/667453023279554560/photo/1 | 11 | 10 | Cupcake | NaN | 2015 | 11 | 19 | https://t.co/6uLCWR9Efa | 297.0 | 84.0 | https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg | Labrador_retriever | 0.82567 |
twitter_archive_master_clean.shape
(1994, 17)
twitter_archive_master_clean.to_csv('twitter_archive_master.csv')
twitter_archive_master_clean.head(2)
| tweet_id | source | text | expanded_urls | rating_numerator | rating_denominator | name | dogs_stage | year | month | day | url | favorite_count | retweet_count | jpg_url | dog_type | confidence | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 667405339315146752 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Biden. Biden just tripped... 7/10 | https://twitter.com/dog_rates/status/667405339315146752/photo/1 | 7 | 10 | Biden | NaN | 2015 | 11 | 19 | https://t.co/3Fm9PwLju1 | 444.0 | 213.0 | https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg | Saint_Bernard | 0.381377 |
| 1 | 667435689202614272 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Ermergerd 12/10 | https://twitter.com/dog_rates/status/667435689202614272/photo/1 | 12 | 10 | NaN | NaN | 2015 | 11 | 19 | https://t.co/PQni2sjPsm | 293.0 | 81.0 | https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg | Rottweiler | 0.999091 |
twitter_archive_master_clean.columns
Index(['tweet_id', 'source', 'text', 'expanded_urls', 'rating_numerator',
'rating_denominator', 'name', 'dogs_stage', 'year', 'month', 'day',
'url', 'favorite_count', 'retweet_count', 'jpg_url', 'dog_type',
'confidence'],
dtype='object')
sns.set()
# setting the background of the figure
plt.figure(figsize = (8,6), dpi =105)
# we are plotting the figure by specifying the figure size and resolution
year_tweets = twitter_archive_master_clean.groupby('year')['tweet_id'].count()
# we are grouping by year to know the number of tweets made in particular year
plt.title('Number of tweets vs Year',fontsize=18)
# title for the graph
colors = ['r','b','g']
# setting the color for each portion of the piechart
plt.pie(year_tweets.values,labels=year_tweets.index,colors = colors,autopct = '%d')
# plotting piechart for the years with respective color for their portion
plt.show()
# Display the figure
sns.set()
# setting the background of the figure
total_retweets_by_month = twitter_archive_master_clean.groupby('month')['retweet_count'].sum()
# We are grouping by month and retweet_count so that we get the total number of retweets in each month.
plt.figure(figsize=(15,10),dpi=140)
# we are plotting the figure by specifying the figure size and resolution
plt.xlabel('Month in which retweet was made', fontsize = 12)
# we are setting the label for x-axis using specified fontsize
plt.ylabel('total number of retweets ', fontsize = 12)
# we are setting the label for y-axis using specified fontsize
plt.title('Total number of retweets made in each month',fontsize=18)
# we are specifying the name for the title of the graph
plt.plot(np.arange(1,13),total_retweets_by_month)
# we are plotting the line graph
plt.xticks(np.arange(1,13),rotation = 45)
# setting the tick labels for the x-axis at an angle of 45 degrees
plt.show()
# Displaying the figure
sns.set()
# setting the background of the figure
plt.figure(figsize=(15,10),dpi=140)
# we are plotting the figure by specifying the figure size and resolution
top_10_dog_types = twitter_archive_master_clean.dog_type.value_counts()[:10]
# top 10 dog breeds
c = plt.cm.prism
# Linear segmented color map
plt.title("Top 10 Dog Breeds", fontsize=18)
# title for the graph
plt.xlabel('Dog count', fontsize=12)
# we are setting the label for x-axis using specified fontsize
plt.ylabel('Dog Breed', fontsize=12)
# we are setting the label for y-axis using specified fontsize
sns.barplot(top_10_dog_types.values, top_10_dog_types.index,
palette=[c(0.1),c(0.2),c(0.3),c(0.4),c(0.5),c(0.6),c(0.7),c(0.8),c(0.9),c(0.99)])
# barplot of top 10 dog types with palette (colors to use for the different levels of the graph)
for i, v in enumerate(top_10_dog_types.values): # Enumerated object
plt.text(0.8,i,v,color='k',fontsize=14) #plotting text for each level
sns.set()
# setting the background of the figure
plt.figure(figsize = (8,6), dpi =105)
# we are plotting the figure by specifying the figure size and resolution
plt.title('Dog Stage',fontsize=18)
# title for the graph
dog_stage = twitter_archive_master_clean.dogs_stage.value_counts()
# various stages of dogs
colors = ['yellow','pink','orange','brown']
# colors for each portio of the donut plot
my_circle = plt.Circle((0,0),0.7,color ='white')
#create a circle with radius 0.7
plt.pie(dog_stage.values, labels=dog_stage.index, colors=colors,autopct = '%1.1f%%' )
# plotting donut plot with respective colors and their repective % (portion) to the data.
p=plt.gcf()
# Get the current figure.
p.gca().add_artist(my_circle)
# get the axes
plt.show()
# Display the figure
favorite_count_dog = twitter_archive_master_clean.sort_values(by = 'favorite_count',ascending = False)
highest_favorite_count_dog = favorite_count_dog.loc[:,['favorite_count','jpg_url','dog_type','confidence']].head(1)
highest_favorite_count_dog
| favorite_count | jpg_url | dog_type | confidence | |
|---|---|---|---|---|
| 1718 | 155583.0 | https://pbs.twimg.com/ext_tw_video_thumb/744234667679821824/pu/img/1GaWmtJtdqzZV7jy.jpg | Labrador_retriever | 0.825333 |
response = requests.get('https://pbs.twimg.com/ext_tw_video_thumb/744234667679821824/pu/img/1GaWmtJtdqzZV7jy.jpg')
Image.open(BytesIO(response.content))
confidence_dog = twitter_archive_master_clean.sort_values(by = 'confidence',ascending = False)
highest_confidence_dog = retweet_count_dog.loc[:,['jpg_url','dog_type','confidence']].head(1)
highest_confidence_dog
| jpg_url | dog_type | confidence | |
|---|---|---|---|
| 732 | https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg | komondor | 0.999956 |
response = requests.get('https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg')
Image.open(BytesIO(response.content))